Currently my page uses php and I'm able to output a checkmark image in a table cell if a certain value is found in the dataset as seen below
<?php echo ($row_rs_test['status'] == "Quote")?"<img src=\"/mdwapp/images/0090_check.gif\" alt=\"Check\" width=\"12\" height=\"12\">":" "; ?>
I'm...
How can I put this
<input name="fAH" type="checkbox" value="" onclick="ToggleFilter(this.checked, ffAH);" />
into this
...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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.