RE: [PHP-WIN] Post method not working

2004-10-22 Thread Zareef Ahmed
-Original Message- From: Janet Valade [mailto:[EMAIL PROTECTED] Sent: Thursday, October 21, 2004 2:05 PM To: Brian; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Post method not working Brian wrote: > OK, I'm new to php, so be gentle :) > > I have just installed PHP 5.0.2

Re: [PHP-WIN] Post method not working

2004-10-21 Thread Sudeep
Hi brian, You have an error in line: print "You chose a $borderStyle border"; It should be like this: print "You chose".$_GET["borderStyle"]."border"; B'cause $_GET["borderStyle"] is the correct way to capture things that are sent thru url. And for POST variable it should be $_POST["bor

Re: [PHP-WIN] Post method not working

2004-10-21 Thread Janet Valade
Brian wrote: OK, I'm new to php, so be gentle :) I have just installed PHP 5.0.2 on Windows XP Pro\IIS 5 I am learning PHP with one of those step by step books, and I have run into an issue with forms. They don't seem to be getting the variable I am passing. This code works: But this does not: E