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 to the same page,

RE: [PHP] method=post problem

2002-05-15 Thread John Holmes
Use quotes and a little common sense. How do you expect HTML to know that you mean John Doe to be the entire value? Computers only do what you tell them. So what's the value there? Is it 'John', 'John Doe', 'John Doe crap=foo' or what?? Hope you see the point... ---John Holmes... >