Jump to content

[SOLVED] Completely forgotton the function


whelpton

Recommended Posts

Hello everyone.

 

I completely forgot the way to process information after the url.

 

For example test.com/index.php?INFO

 

I cant remember how to use the INFO section of the url

 

No worries mate,

it is the query string

Example

http://www.domainname.com/index.php?variableName=variableValue

In PHP it is a $_GET Global Array. you can echo that by <?php echo $_GET['variableName']; ?> also you can use $_REQUEST['variableName'];

 

Hope this help.

Google php query string you will get some good documents too.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.