Member Avatar for bearcatFulton
bearcatFulton

I am looking to make a list of checkboxes from items in a database like so.

while($row = mysql_fetch_array($cropsResult)){
            echo "<tr><td class=\"toBuyList\"><input type=\"checkbox\"  name=\"hay[]\" value=\"" . $row['cropType'] . "\" tabindex=\"5\"/> " . $row['cropType'] . "</td></tr>";
        }

I have not been able to get any items on that dynamic list into the tab index, even if the list has a size of one.