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 checked off for viewing.

http://www.w3.org/TR/REC-html32#fields

<input type="checkbox" name="abb" value="1" checked>
<input type="checkbox" name="abb" value="1">

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to