I've got a page where i have someone enter some data, such as car type
When i submit this form it goes from entercar.php to carprocess.php on car proccess it enters the data into a database and returns the user to index.php but if there are fields missing it goes back to entercar.php via
header("Location: entercar.php");
when i'm back on this page i want to display all entered data, i thought okay do this
echo isset($_POST['CarType']);
But it does not work, what can i do?