I'm creating my own web poll script. For the response choices to a poll I want to have something like an input text field, then next to it a link that says "Need Another", so they can have more input text fields for a response answer when clicked. The maximum will be 10 total text input fields.
I was thinking somehow a loop would work for the code below; not sure.
echo "Response #: <input type=\"text\" name=\"response#\"> <a href=\"$PHP_SELF\">Need another?</a>";
Thanks in advance for any help.