View Single Post
Old 09-14-2007, 05:08 PM   #4 (permalink)
Karl
The Reckoner
Advanced Programmer Top Contributor 
 
Karl's Avatar
 
Join Date: Sep 2007
Posts: 437
Thanks: 22
Karl is on a distinguished road
Default

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.
Karl is offline  
Reply With Quote