Hi
Form on html page submits to php page which sends an sql query.
I want to redirect to an error message if the inputted values are "".
I can do this on the php page but it's kind of a hack and uses a lot of code making tables to add white space to hide the regular output.
I'm trying to use this to redirect...
<?php
if ($zone == "") header("Location:http://127.0.0.1/sg/error.php#5");
exit;
?>