Page 1 of 1

How to send textbox value to next page in PHP?

Posted: Mon Sep 15, 2008 2:00 am
by rajkumar.shri
Hi.. can u please help me this question- After submit How to send textbox value to next page in PHP?
Regards,
Raj.

Re: How to send textbox value to next page in PHP?

Posted: Mon Sep 15, 2008 2:07 am
by Ziq
You can use sessions, cookies or $_GET variable (if value is short)

Re: How to send textbox value to next page in PHP?

Posted: Mon Sep 15, 2008 4:36 am
by pcoder
If you are submitting the value from the one page to the next page.
Then you can easily get the post value from $_POST.
Otherwise , you can use sessions or cookies as said by Ziq. :)