I am new here and no php expert to, but can do bit, but i am stuck here, I have an array that builds a list of links to search properties, but i also want to add check boxes to search multiple criteria, i can’t seem to figure out how to get a check box next to each list item.
original code here
-
<?
$res=mysql_query("select * from tbspecial where SPFor='L' order by Sort;");
while ($rs=mysql_fetch_array($res)) {
echo "
- ".$rs['SPName']." \n"; } ?>
I tried a few variants like this
-
<?
$res=mysql_query("select * from tbspecial where SPFor='L' order by Sort;");
while ($rs=mysql_fetch_array($res)) {
echo "
- ".$rs['SPName']." \n"; } ?>