Actually the super global variable that were accepted before PHP 4 have all been
depreciated. if you're using get then there's a new server variable
_SERVER[formTagName] that passes variables across pages.
melih
>
> From: "Cristian MARIN" <[EMAIL PROTECTED]>
> Date: 2003/06/23 Mon PM 01:17:34 E
Then try:
Any of this will work for the moment.
--
-
Cristian MARIN - Developer
InterAKT Online (www.interakt.ro)
Tel: +4021 312.53.12
Tel/Fax: +4021 312.51.91
[EMAIL PROTECTED]
"Stephen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL P
$HTTP_GET_VARS - This is an example of the old style super globals. However,
php is now moving over to a simpler method...
$HTTP_GET_VARS is becoming $_GET['x']
Post variables all arrvie as $_POST['x']
Session variables are $_SESSION['x']
Cookie variables are $_COOKIE['x']
and so on. I strongly su