How do I read the arguments passed to a php script and store them in a variables?
e.g. I call the script like www.hepek.com/Scripts/Confirm.php?user_mail=XXX
I need to read this "user_mail" argument within a script "Confirm.php"
thanks Tana
Try the http_get_vars[$variable] PHP environment variable. You'll find it there.
just call the variable in the script.
$user_mail
and if you use the system variable make sure it is all caps:
$HTTP_GET_VARS['varname']