Cannot access ID's in URL ($_GET)
Posted: Fri Dec 06, 2002 9:56 pm
for example:
http://www.mysite.com/index.php?id=3241
I want to access the "id".
so I do this:
Basically (for example)
http://www.mysite.com
is forwarded to:
http://123.123.123.123
I do not get the ID. It returns Undefined index: id
--Global Variables = ON in my php.ini
ANY IDEAS

http://www.mysite.com/index.php?id=3241
I want to access the "id".
so I do this:
BUT since "www.mysite.com" is actually a forwarded URL.$idIn = $_GET['id'];
echo "$idIn";
Basically (for example)
http://www.mysite.com
is forwarded to:
http://123.123.123.123
I do not get the ID. It returns Undefined index: id
--Global Variables = ON in my php.ini
ANY IDEAS