Help with navigation script...

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
yeh!!!! :-D
welcome to the world of $_GET[] and $_POST[]

and rather than using $_REQUEST[], use the above vars, it helps to track down your variables
 
$_POST vars are available when in the form field
Code:
<from method=post>
and
$_GET vars are available when in the form field
Code:
<from method=get>
 
Back
Top