Form Process
I am creating a form that is going to be on 3 different pages. Does anyone know a php script out there that can carry that information through all 3 pages?
I am creating a form that is going to be on 3 different pages. Does anyone know a php script out there that can carry that information through all 3 pages?
druagord posted this at 22:20 — 8th July 2003.
He has: 335 posts
Joined: May 2003
if what you want is to have the same form on 3 different pages you can use include. if you want to keep youre data on the three page then it's a bit more touchy you can pass them in the URL (GET method), do a form with hidden fields or set them as session variables
IF , ELSE , WHILE isn't that what life is all about
Renegade posted this at 22:22 — 8th July 2003.
He has: 3,022 posts
Joined: Oct 2002
To use it:
<?
echo "Hello there" . $_POST['name'];
?>
The variable should pass to all three pages.
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.