RE: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Boyd, Todd M.
-Original Message- From: Chris Carter [mailto:chandan9sha...@yahoo.com] Sent: Monday, January 12, 2009 11:00 AM To: php-general@lists.php.net Subject: [PHP] Data trasfer between PHP pages Hi, I have one form where user fills data using radio buttons. Only one answer goes

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Dan Shirah
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=15/label br / input type=radio name=myname value=Answer 1 id=2 / label

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread VamVan
If the 2 forms exist on the same server. Use Sessions. thats would solve lot of problems managing hidden fields and everything. Thanks, V

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread tedd
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=15/label br / input type=radio

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Robert Cummings
On Mon, 2009-01-12 at 13:37 -0500, tedd wrote: 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

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Ashley Sheridan
On Mon, 2009-01-12 at 13:40 -0500, Robert Cummings wrote: On Mon, 2009-01-12 at 13:37 -0500, tedd wrote: 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

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Eric Butera
On Mon, Jan 12, 2009 at 3:03 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE, $_GET and $_POST (in that order I believe, with $_GET

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Robert Cummings
On Mon, 2009-01-12 at 15:15 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:03 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE,

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Eric Butera
On Mon, Jan 12, 2009 at 3:21 PM, Robert Cummings rob...@interjinn.com wrote: On Mon, 2009-01-12 at 15:15 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:03 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Nathan Rixham
Eric Butera wrote: On Mon, Jan 12, 2009 at 3:21 PM, Robert Cummings rob...@interjinn.com wrote: On Mon, 2009-01-12 at 15:15 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:03 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I tend to use $_REQUEST to capture a lot of my data, as I end

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Robert Cummings
On Mon, 2009-01-12 at 15:29 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:21 PM, Robert Cummings rob...@interjinn.com wrote: On Mon, 2009-01-12 at 15:15 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:03 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I tend to use

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Ashley Sheridan
On Mon, 2009-01-12 at 15:15 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:03 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE,

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Eric Butera
On Mon, Jan 12, 2009 at 3:34 PM, Robert Cummings rob...@interjinn.com wrote: On Mon, 2009-01-12 at 15:29 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:21 PM, Robert Cummings rob...@interjinn.com wrote: On Mon, 2009-01-12 at 15:15 -0500, Eric Butera wrote: On Mon, Jan 12, 2009 at 3:03

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread tedd
At 8:03 PM + 1/12/09, Ashley Sheridan wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE, $_GET and $_POST (in that order I believe, with $_GET overwritting $_COOKIE, and $_POST

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Robert Cummings
On Mon, 2009-01-12 at 16:18 -0500, tedd wrote: At 8:03 PM + 1/12/09, Ashley Sheridan wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE, $_GET and $_POST (in that order I believe,

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Eric Butera
On Mon, Jan 12, 2009 at 4:18 PM, tedd tedd.sperl...@gmail.com wrote: At 8:03 PM + 1/12/09, Ashley Sheridan wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE, $_GET and $_POST (in

Re: [PHP] Data trasfer between PHP pages

2009-01-12 Thread Ashley Sheridan
On Mon, 2009-01-12 at 16:18 -0500, tedd wrote: At 8:03 PM + 1/12/09, Ashley Sheridan wrote: I tend to use $_REQUEST to capture a lot of my data, as I end up mixing get and post a lot throughout my code. $_REQUEST is an amalgamate of $_COOKIE, $_GET and $_POST (in that order I believe,