|
|
 |
RE: FN-FORUM: Can I use checkboxes for this functionality?
date posted 16th May 2008 11:08
The way I do it with checkboxes is
To display them (the list o boxes is out of a database)
while ($data=mysql_fetch_array($res)){
if ($data['site']) $data['site'] ='checked=\"checked\"';
$inlist.= "
".ucwords($data['mastercat'])."";
}
And to process them I do this
for ($i=0;$i |
 |
|