The default config for new version of php is with register_globals set to off.
This is because of security reason.
You have your variable in $HTTP_GET_VARS['action'] or in $_GET['action']
(depends on php ver you use). Consult manual at
http://www.php.net/manual/en/security.registerglobals.php
HTH
the proper way to access form data.
> _
> - Original Message -
> From: "Aidal" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, November 05, 2003 3:17 PM
> Subject: [PHP-WIN] vars from page to page
>
>
> &
Try $_REQUEST['msg'] instead of $msg
This is the proper way to access form data.
_
- Original Message -
From: "Aidal" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, November 05, 2003 3:17 PM
Subject: [PHP-WIN] vars fr
Hi NG.
I have a little problem with a new install of php/apache/win2k which has to
do with the setup I think.
I have made a webpage on a local machine php/apache/win98 which runs
perfectly.
But when I transfer it to the new installation it seems that vars doesn't
travel between pages.
As an exam