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 input type=checkbox name=abb value=?php echo $myrow['abb'] ? the result should be : IF the record contains the field abb and it has a value of 1 then it will be

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 Subject:

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 input type=checkbox name=abb value=?php echo $myrow['abb'] ? 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