Checkbox not showing as checked

AwesomeGirl96

New Member
The issue is I have a page with the following checboxes listed for a particular question.When I select one of the boxes and go to the next page and comeback then i find,none of the checkboxes appear to be checked.I have checked it on the back end and i was able to see that the checkboxes were indeed checked,but i was not able to view them as checked.I am not able to figure out as to why they dont appear to be checked.Any help regarding this would be appreciated.Thanks in Advance. The following is the code which i have in that page.\[code\] <td> <input type="checkbox" name="test_na" value="http://stackoverflow.com/questions/3803682/N/A" <?=$test_na?> id="test_na"> <label for="test_na">NA</label> </td> <td> <input type="checkbox" name="test_y" value="http://stackoverflow.com/questions/3803682/Y" <?=$test_y?> id="test_y"> <label for="test_y">Yes</label> </td><td> <input type="checkbox" name="test_n" value="http://stackoverflow.com/questions/3803682/N" <?=$test_n?> id="test_n"> <label for="test_n">No</label></td>\[/code\]
 
Back
Top