How do you mean to "read from it"? If you mean have "readexampleform.php" be able to know what you entered on "exampleform.php", then you can just set the action of the form to be "readexampleform.php", to which all the fields will either be in the $_POST or $_GET variable depending on which method you use (usually you will want POST).
If however you have "exampleform.php" processing the form, and then need "readexampleform.php" to have access to it, then you have a few options based on your needs.
1. Save the values to the session
2. Save the values to a database
3. Save the values to a text file
4. If simple enough info, save it to a cookie on the users system.
An HTML form is a section of a document containing normal content, markup, special elements called controls (checkboxes, radio buttons, menus, etc.)
[url=http://autoprosusa.com]oem parts[/url]
[url=http://autoprosusa.com]cheap car parts[/url]
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
Greg K posted this at 17:15 — 11th October 2012.
He has: 2,145 posts
Joined: Nov 2003
How do you mean to "read from it"? If you mean have "readexampleform.php" be able to know what you entered on "exampleform.php", then you can just set the action of the form to be "readexampleform.php", to which all the fields will either be in the $_POST or $_GET variable depending on which method you use (usually you will want POST).
If however you have "exampleform.php" processing the form, and then need "readexampleform.php" to have access to it, then you have a few options based on your needs.
1. Save the values to the session
2. Save the values to a database
3. Save the values to a text file
4. If simple enough info, save it to a cookie on the users system.
-Greg
martaacosa posted this at 09:45 — 3rd June 2013.
They have: 9 posts
Joined: Jun 2013
An HTML form is a section of a document containing normal content, markup, special elements called controls (checkboxes, radio buttons, menus, etc.)
[url=http://autoprosusa.com]oem parts[/url]
[url=http://autoprosusa.com]cheap car parts[/url]
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.