Re: [PHP-WIN] vars from page to page

2003-11-05 Thread Piotr Pluciennik
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

Re: [PHP-WIN] vars from page to page

2003-11-05 Thread Aidal
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 > > > &

Re: [PHP-WIN] vars from page to page

2003-11-05 Thread Ignatius Reilly
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

[PHP-WIN] vars from page to page

2003-11-05 Thread Aidal
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