Posted by eli.hen on 11/03/05 08:29
Using $_GET :
result.php?num=1001
Then use $_GET['num'] to get the number 1001.
Using $_SERVER['QUERY_STRING'] :
result.php?1001
Then use $_SERVER['QUERY_STRING'] to get all the string after the ?
mark. In this case it will have the number 1001.
Navigation:
[Reply to this message]
|