Re: [PHP] method=post problem

2002-05-15 Thread Analysis & Solutions
On Wed, May 15, 2002 at 09:27:55PM -0400, Jule wrote: > > > > when it comes back and goes into the loop. Only the first name from > $quiz[owner_name] is left, so where it used to be John Doe, is now only Joe. You're missing quotes around the attribute values. Thus, the system is assuming onl

Re: [PHP] method=post problem

2002-05-15 Thread Miguel Cruz
On Wed, 15 May 2002, Jule wrote: > > > but now here's the problem: > when it comes back and goes into the loop. Only the first name from > $quiz[owner_name] is left, so where it used to be John Doe, is now only Joe. > how do i fix this? Your HTML is invalid. You have to quote non-numeric valu

Re: [PHP] method=post problem

2002-05-15 Thread Janet Valade
You need double quotes around the value. E.g., - Original Message - From: "Jule" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 15, 2002 6:27 PM Subject: [PHP] method=post problem Hey guys and gals, i have a form with method=post which sends

RE: [PHP] method=post problem

2002-05-15 Thread John Holmes
see the point... ---John Holmes... > -Original Message- > From: Jule [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 15, 2002 9:28 PM > To: [EMAIL PROTECTED] > Subject: [PHP] method=post problem > > Hey guys and gals, > > i have a form with method=post which sends &

[PHP] method=post problem

2002-05-15 Thread Jule
Hey guys and gals, i have a form with method=post which sends to the same page, and picks it up in an if ($submitted) {} loop. but now here's the problem: when it comes back and goes into the loop. Only the first name from $quiz[owner_name] is left, so where it used to be John Do