[PHP] Forms and IE

2002-02-10 Thread Sean Hurley
Please forgive me if this has been covered before. I have searched the list and could not find reference to a similar problem. I am completetly new to PHP and I am stuck. I am creating a very simple form. Essentially the user agrees or disagrees to a message. If the user agrees, they are

RE: [PHP] Forms and IE

2002-02-10 Thread Martin Towell
might be the header(location...); bit - you might need to specify the full address -Original Message- From: Sean Hurley [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002 3:40 PM To: [EMAIL PROTECTED] Subject: [PHP] Forms and IE Please forgive me if this has been covered

Re: [PHP] Forms and IE

2002-02-10 Thread Jason Lotito
Answered below: - Original Message - From: Sean Hurley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 11:40 PM Subject: [PHP] Forms and IE Please forgive me if this has been covered before. I have searched the list and could not find reference to a similar

RE: [PHP] Forms and IE

2002-02-10 Thread Sean Hurley
PROTECTED] Subject: RE: [PHP] Forms and IE Date: Mon, 11 Feb 2002 15:48:17 +1100 might be the header(location...); bit - you might need to specify the full address -Original Message- From: Sean Hurley [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002 3:40 PM To: [EMAIL PROTECTED

Re: [PHP] Forms and IE

2002-02-10 Thread Analysis and Solutions
Hi Sean: Sean Hurley wrote: Agree input type=checkbox name=agree[] value=agree I Do Not Agree input type=checkbox name=disagree value=disagree if ($agree) /* (I have tried this also with ($isset = $agree)) */ { header (location: ?link=form); } else { header (location: /LETS); }