[PHP-WIN] Re: Form Problem

2002-06-09 Thread Fester
Some further details. My server config is: Apache/2.0.36 (Win32) DAV/2 PHP/4.2.1 Thanx again, Fester "Fester" <[EMAIL PROTECTED]> wrote in message advn6h$9bi$[EMAIL PROTECTED]">news:advn6h$9bi$[EMAIL PROTECTED]... > Hi, > > I am having the same problem, and can reproduce it with a simple test >

[PHP-WIN] Re: Form Problem

2002-06-09 Thread Fester
Hi, I am having the same problem, and can reproduce it with a simple test script. When a user name and password are entered, the phpinfo output shows that it is a POST method with an empty _SERVER[argv] array. I have verified that register_globals is set to "on" in my php.ini. My test program

RE: [PHP-WIN] Re: Form Problem

2002-06-06 Thread brother
Or change the $submit to $_GET["submit"] if (isset($_GET["submit"])) { mysql_query("INSERT INTO $ntable VALUES ('','$title','$posted_by','$entry',NULL)"); print("$title\n"); print("Posted by $posted_by\n"); print("$entry\n"); } /brother > -

[PHP-WIN] Re: Form Problem

2002-06-06 Thread Ilker Cetinkaya
it seems as if register_globals option is turned off and therefore $submit is not set. hth ilker "James Meers" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, I have this form and its just not picking up the submit variable however it is po