[font=arial]What I think Pig is trying to say, is to use a query string to pull the previous page's data. Example, say you have gotten the form value, $_POST["name"]; from the previous page, and you want to now redirect them to a different page. Well, you can use the header function like this to send as a query string:[/font]
header("Location: yourpage.php?name=".$_POST["name"]);
[font=arial]Of course, you'd retreive the values on the yourpage.php file with $_GET["name"].
You could also try using a hidden form with its values populated by PHP from the previous page, to send to the next page. But that's only if you want the page to completely load before redirection.[/font]
[J]ona