On one of my pages, the user has to select some check boxes, then enter their username and password
If you username and password are wrong, then the checkboxes need to stay checked, which their not doing
How do i go about making sure they stay checked
This is how their generated
$result = mysql_num_rows($sql);
if ($result == 0) {
die("<br /><strong>Error getting game data</strong>");
} else {
while ($row = mysql_fetch_array($sql)) { ?>
<td width="110"><div align="center"><?php echo "<img src=\"{$row[url]}\" alt=\"{$row['alttext']}\"/>" ; ?><br />
<input name="normal[]" type="checkbox" id="normal[]" value="checkbox" />
</div></td>