> I'm sure this is easy, but I'm drawing a blank. I need to have links
at
> the
> bottom of the page that passes arguments to the same script (itself)
when
> it
> gets reloaded. How do we do this?
>
> I have the links like this now:
>
> <a href="index.php?samples">
>
> How do I determine what is passed? I need to do an "if" statement
with
> different outputs depending on the argument.
>
> if ($samples) { do something }
if(isset($_GET['samples']))
{ do something }
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php