How to send textbox value to next page in PHP?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
rajkumar.shri
Forum Newbie
Posts: 5
Joined: Mon Sep 15, 2008 1:56 am

How to send textbox value to next page in PHP?

Post 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.
User avatar
Ziq
Forum Contributor
Posts: 194
Joined: Mon Aug 25, 2008 12:43 am
Location: Russia, Voronezh

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

Post by Ziq »

You can use sessions, cookies or $_GET variable (if value is short)
User avatar
pcoder
Forum Contributor
Posts: 230
Joined: Fri Nov 03, 2006 5:19 am

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

Post 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. :)
Post Reply