> -----Original Message----- > From: Chris Carter [mailto:chandan9sharma@xxxxxxxxx] > Sent: Monday, January 12, 2009 11:00 AM > To: php-general@xxxxxxxxxxxxx > Subject: Data trasfer between PHP pages > > > 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. $_GET['var'] is used for GET-method data retrieval. You have specified POST-method data in your form. Try $_POST['myname'] and see if that doesn't grab the value you're looking for. HTH, // Todd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php