Re: [PHP] Problem with the post variables.

2003-08-23 Thread chris
of doing, depending on which way the wind blows or the price of tea in China. -Oorspronkelijk bericht- Van: Klaus Kaiser Apolinário [mailto:[EMAIL PROTECTED] Verzonden: maandag 18 augustus 2003 16:04 Aan: [EMAIL PROTECTED] Onderwerp: [PHP] Problem with the post variables. Guys I have a problem

Re: [PHP] Problem with the post variables.

2003-08-23 Thread Jim Lucas
- Original Message - From: chris [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 23, 2003 1:34 PM Subject: Re: [PHP] Problem with the post variables. On Mon, 18 Aug 2003 18:35:09 +0200, Wouter Van Vliet [EMAIL PROTECTED] wrote: The problem is probably in the 'enctype

[PHP] Problem with the post variables.

2003-08-18 Thread Klaus Kaiser Apolinário
Guys I have a problem here. I'm using PHP 4.3.2 and httpd 1.3.28. Look my exemple. I have a page whith a Form method post, and I submit this page to teste2.php, but I dont can request de data from the text box... ### This is the test page html body form action=teste2.php

Re: [PHP] Problem with the post variables.

2003-08-18 Thread Hidayet Dogan
Check your register_globals directive in php.ini file. If its value is Off, change your register_globals directive to On, and restart your web server. Or add ini_set(register_globals, 1); line top of your php file. Hidayet Dogan

Re: [PHP] Problem with the post variables.

2003-08-18 Thread CPT John W. Holmes
of the php file, do you see your PHP code? ---John Holmes... - Original Message - From: Hidayet Dogan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 18, 2003 10:47 AM Subject: Re: [PHP] Problem with the post variables. Check your register_globals directive in php.ini file

RE: [PHP] Problem with the post variables.

2003-08-18 Thread Wouter van Vliet
: maandag 18 augustus 2003 16:04 Aan: [EMAIL PROTECTED] Onderwerp: [PHP] Problem with the post variables. Guys I have a problem here. I'm using PHP 4.3.2 and httpd 1.3.28. Look my exemple. I have a page whith a Form method post, and I submit this page to teste2.php, but I dont can request de data from

RE: [PHP] Problem with the post variables.

2003-08-18 Thread Chris Shiflett
--- Wouter van Vliet [EMAIL PROTECTED] wrote: The problem is probably in the 'enctype=multipart/form-data'. You should only use this enctype if you're gonna upload a file through the form. If not, just leave it away or use text/plain Posted data isn't text/plain, it's something like

RE: [PHP] Problem with the post variables.

2003-08-18 Thread Wouter van Vliet
.. (checked it at www.handleidinghtml.nl, interesting for the fellow dutchmen over here ;)) -Oorspronkelijk bericht- Van: Chris Shiflett [mailto:[EMAIL PROTECTED] Verzonden: maandag 18 augustus 2003 19:09 Aan: Wouter van Vliet; Klaus_Kaiser_Apolinario; [EMAIL PROTECTED] Onderwerp: RE: [PHP] Problem

Re: [PHP] Problem with the post variables.

2003-08-18 Thread Tom Rogers
Hi, Tuesday, August 19, 2003, 12:03:51 AM, you wrote: KKA Guys I have a problem here. KKA I'm using PHP 4.3.2 and httpd 1.3.28. KKA Look my exemple. KKA I have a page whith a Form method post, and I submit this page to teste2.php, but I dont can request de data from the text box... KKA