I am working on a project that will allow users to customize which questions they want to include on a survey.
The questions are stored in the database and are retrieved into a form like this:
Code: Select all
while ($Row = mysql_fetch_array($questionResult)) {
print("<tr height=\"25\" align=\"left\">\n");
print("<td align=\"left\"><input type='checkbox' checked value='$Row[ID]' name='questionChoice' /></td>\n");
print("</tr>\n");
}Thank you for your consideration.