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 -- View this message in context: http://www.nabble.com/Data-trasfer-between-PHP-pages-tp21418587p21418587.html Sent from the PHP - General mailing list archive at Nabble.com. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php