Jump to content

[SOLVED] ur redirection..


corillo181

Recommended Posts

Just add a certain action to be taken in the event that no id is passed:

 

thumb.php:

//Get the ID
$id = $_GET['id'];

if(isset($id)) {
  view a thumbnail or something
}
else {
  //Take a default action
  echo "Stop screwing around and give me an ID!";
}

Link to comment
https://forums.phpfreaks.com/topic/55022-solved-ur-redirection/#findComment-271989
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.