Jump to content

Recommended Posts

Does anyone know what putting something like ?flashpage=1 at the end of my page does?

Does anyone know a link to some tutorials that explain this in depth?

 

with what you have typed you could put this in a php file and get the value "1"

www. yourdomain . com?flashpage=1

<?php
$test = $_GET['flashpage'];
echo $test; //will print out "1" if ?flashpage=1
?>

Its called a query string. A query string is just a collection of variables that hold temporary data which will be used for the page you are currently on. You can access the variables in the query string in the url by using the $_GET variable.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.