I'm doing form validation using and redirection: if (!isset($first_name)){ header (location:foo.php);} elseif { empty($first_name)){ $all = 1 } else { header(location:bar.php);}} which works great, what i want is to be also to display entered values on my thank you page (bar.php). How can i get around to do that?
U can use the following:
header("bar.php?var1=value&var2=value");
Then, on the next page call $var1 and $var2, or if you prefer $GET["var1"] and $GET["var2"]
Hope it helps
fLIPIS
Thanks, got it all working