RE: [PHP] Checkbox Initial Value based on record in db

2002-05-01 Thread Craig Vincent
> Kinda off topic here, just checking to see If I am on the right track with > this > > > > the result should be : > > IF the record contains the field "abb" and it has a value of 1 > then it will > be checked off for viewing. No, that wouldn't workto have a checkbox autochecked the HTML mus

Re: [PHP] Checkbox Initial Value based on record in db

2002-05-01 Thread 1LT John W. Holmes
It will only be checked if you put CHECKED in your HTML. if($myrow['abb'] == 1) { echo " checked "; } Add that into your input element. ---John Holmes... - Original Message - From: "Daniel Negron/KBE" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 01, 2002 1:04 PM Sub

Re: [PHP] Checkbox Initial Value based on record in db

2002-05-01 Thread Miguel Cruz
On Wed, 1 May 2002, Daniel Negron/KBE wrote: > Kinda off topic here, just checking to see If I am on the right track with > this > > > > the result should be : > > IF the record contains the field "abb" and it has a value of 1 then it will > be checked off for viewing. http://www.w3.org/TR/RE