09-14-2007, 05:08 PM
|
#4 (permalink)
|
|
The Reckoner
Join Date: Sep 2007
Posts: 437
Thanks: 22
|
Ok, seems like you've got yourself in a muddle, try the following:
Find the line:
PHP Code:
echo "<input type=\"hidden\" value=\"".$edit_choice_qID."\" name=\"edit_choices_qID\">";
and replace it with:
PHP Code:
echo "<input type=\"hidden\" name=\"edit_choice\">"; echo "<input type=\"hidden\" value=\"".$edit_choice_qID."\" name=\"edit_choices\">";
See if that fixes the edit choices part of the script.
|
|
|
|