I am getting an error.... Warning: Cannot modify header information - headers already sent by (output started at /home/content/b/r/a/brayden822/html/send_estimate.php:6)
What do I need to do.
<body>
<?
if (($POST[firstName] == "") || ($POST[lastName] == "") || ($POST[address] == "") || ($POST[city] == "") || ($POST[state] == "") || ($POST[zip] == "") || ($POST[phone] == "") || ($POST[cphone] == "") || ($POST[email] == "") || ($POST[contact] == "") || ($POST[time] == "") || ($POST[products] == "") || ($POST[priority] == "") || ($POST[within] == "") || ($POST[when] == "") || ($POST[source] == "")) {
header("Location: send_estimate.html");
exit;
}
This is on my send_estimate.php page...
does that make a difference...
It is basically my check point for errors... if they don't enter any data... they have to fill out the form again....
What am I doing wrong!!!
Jay