Jump to content

how to get certail value from uri and do if statement?


superkingkong

Recommended Posts

Hi guys,

 

how can I get certail value from a uri and do if statement?

 

eg,

 

url: http://geocities.com/~myusername/file.php?1

url: http://geocities.com/~myusername/file.php?2

url: http://geocities.com/~myusername/file.php?3

 

if ($_SERVER['REQUEST_URI'] == 1)

do this

 

elseif == 2

 

do this

 

else do this

 

I'm a newbie in php, appreciate if you could help me, thanks.

http://yoursite.com/script.php?1

 

For the above URL, you could just do isset($_GET['1']) ... or isset($_GET[1]) might work... I don't use numbers as get variables in URLs. Strings work fine in this manner though...

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.