How can I put this
into this
and make it work?
I'm trying to have a list of rep names that would each have a check box next to their names and on click would run a function. I can't seem to incorporate the two and have it work.
Code:
<input name="fAH" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffAH);" />
into this
Code:
...while ( $row_rs_rep = mysql_fetch_array($rs_rep) ) {
$repList = $repList.'<li>'.$row_rs_rep['stb_lastname'].'</li>';
}
and make it work?
I'm trying to have a list of rep names that would each have a check box next to their names and on click would run a function. I can't seem to incorporate the two and have it work.