I created a form. So i want to get the whole data someone fills in the form. That's i will get the data anothet palce, while the person will see something like " Tahnk you, your query has been sent successefully". But i will then get the data another place.
Thanks Guys...
How to get data filled ij a form
Moderators: egami, macek, gesf
-
- php-forum Fan User
- Posts: 973
- Joined: Mon Oct 01, 2012 12:32 pm
There are different ways to pass information from one page to another, specifically, GET, POST, COOKIE, and SESSION. There are others, like AJAX but getting used to the native php structures first is the best way to go. This video http://www.youtube.com/watch?v=CEl3bhCBjtI will cover the first 3 ways, and this one http://www.youtube.com/watch?v=TOMLpOSlkto will cover using sessions to pass information. The videos are short and in plain english to make them easy to follow.