Case: --------test.php---------- <? echo "$id";
i try to send the $id to the test.php by URL (http://localhost/test.php?id=5354), but the test.php cannot display the variable $id as defined in the URL. Please help.
you must enable "global" variables in the php.ini or refer to the variables by $id = $HTTP_GET_VARS['id'];
vino
Hey,
exactly what wanted to know. Thanks
Panther