Jump to content

index.php?=done.php


NLT

Recommended Posts

You keep doing index.php?=done.

 

The ? indicates a variable being passed to the server via GET method. Therefore, you must specify the variable name IE (index.php?status=done) as was already stated.

 

In PHP, you can interpret the variables by doing this:

 

if ((isset($_GET['status']))&&($_GET['status'] == 'done')) {
   // Do something
}

Link to comment
https://forums.phpfreaks.com/topic/242155-indexphpdonephp/#findComment-1244197
Share on other sites

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.