RE: [PHP-WIN] problems with variables

2004-02-14 Thread George Pitcher
Ciro, Tyr reading your variable as $_POST['first_name'] and see if that works. That's the default way of passing form and url variables in PHP. If you would rather do it the 'old' way (not recommended), open your php.ini file and check the 'register globals' to 'on'. George Oxford/Edinburgh >

Re: [PHP-WIN] problems with variables

2004-02-09 Thread Luis Moreira
ary 07, 2004 9:42 PM Subject: RE: [PHP-WIN] problems with variables > I dopn't understand what you asking about (read: I don't bother to read > through all clutter to figure it out), but you may want to have a look at: > > http://nl.php.net/manual/en/language.variables.external.

RE: [PHP-WIN] problems with variables

2004-02-07 Thread Svensson, B.A.T. (HKG)
I dopn't understand what you asking about (read: I don't bother to read through all clutter to figure it out), but you may want to have a look at: http://nl.php.net/manual/en/language.variables.external.php -Original Message- From: Ciro To: [EMAIL PROTECTED] Sent: 2004-02-07 19:40 Subje

Re: [PHP-WIN] problems with variables

2003-06-17 Thread Felipe Lorente
Ok, thanks, now it is working!! "Sven" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > your vars you want to send to your next page are stored in these arrays. > > so if you POSTed a form with $name and $email use $_POST['name'] or > $HTTP_POST_VARS['email'] in your script

Re: [PHP-WIN] problems with variables

2003-06-16 Thread sven
your vars you want to send to your next page are stored in these arrays. so if you POSTed a form with $name and $email use $_POST['name'] or $HTTP_POST_VARS['email'] in your script instead of the awaited $name and $email. ciao SVEN "Felipe Lorente" <[EMAIL PROTECTED]> schrieb im Newsbeitrag new

Re: [PHP-WIN] problems with variables

2003-06-16 Thread Felipe Lorente
Thanks, but where should I use $HTTP__VARS['varname'] Arrays?? Thanks again. Felipe. "Malte" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > you probably got register globals turned off in your php.ini file. Turn it > on or use the > $HTTP__VARS['varname'] Arrays

Re: [PHP-WIN] problems with variables

2003-06-16 Thread malte
you probably got register globals turned off in your php.ini file. Turn it on or use the $HTTP__VARS['varname'] Arrays can be POST, GET, SESSION and so on malte - Original Message - From: "Felipe Lorente" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, June 15, 2003 7: