If you DO NOT register globals (in php.ini) you MUST use $_POST["<post_var>"] or $_GET["<get_var>"] to access those variables... If you DO resgister globals you can also use $<post_var> or $<get_var>. By default, register globals is set to "Off" for security reasons; so you'll need to set it "On". The line must say:

register_globals = On ; Whether or not to register the EGPCS variables as global

Hope it helps!!!

--
Miguel J. Jiménez
ISOTROL, S.A. (Área de Internet)
Avda. Innovación nº1, 3ª - 41020 Sevilla (ESPAÑA)
[EMAIL PROTECTED]
TLFNO. 955036800 ext. 111

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to