Re: [PHP] Problem with the post variables.

2003-08-23 Thread Jim Lucas
you should be fine. 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

Re: [PHP] Problem with the post variables.

2003-08-23 Thread chris
On Mon, 18 Aug 2003 18:35:09 +0200, 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 Wouter Why would that be

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> ###

RE: [PHP] Problem with the post variables.

2003-08-18 Thread Wouter van Vliet
: [PHP] Problem with the post variables. --- 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

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 appl

RE: [PHP] Problem with the post variables.

2003-08-18 Thread Wouter van Vliet
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 Wouter -Oorspronkelijk bericht- Van: Klaus Kaiser Apolinário [mailto:[EMAIL PROTECTED] Verzonden: m

Re: [PHP] Problem with the post variables.

2003-08-18 Thread CPT John W. Holmes
you view the source 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 v

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