At 8:59 AM -0800 1/12/09, Chris Carter wrote:
Hi,
I have one form where user fills data using radio buttons. Only one answer
goes from here to another page.
FORM 1
<form action="form2.php" method="post">
<input type="radio" name="myname" value="Answer 5" id="1" />
<label for="1">5</label>
<br />
<input type="radio" name="myname" value="Answer 1" id="2" />
<label for="2">1</label>
<br />
<input type="radio" name="myname" value="Answer 3" id="3" />
<label for="3">3</label>
<br />
<input type="submit" value="Enter" />
</form>
---------------------------
FORM 2
There is another page has a form with 14 fields PLUS I need the data of the
previous form to be hidden somewhere in this form.
Once this form is submitted I need to put the combined data into the
database.
I know this is so simple. But not sure why this is not working. I tried to
use <?$_GET[myname] ?> from the first form but its not working.
My module page has to go live tomorrow morning, I am stuck, please help.
Thanks,
Chris
Arrgggg.....
Sometimes I wonder.
You use a POST form and a GET to read the form -- do you see anything
wrong with that?
Cheers,
tedd
--
-------
http://sperling.com http://ancientstones.com http://earthstones.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php