I'm doing some spam checking on a form. The code below works as it should on my localhost (redirect to google.com if true), however, it doesn't when it's on the production server (Executes the rest of the script and DOES NOT redirect to Google.com).
if('POST' == $_SERVER['REQUEST_METHOD']) {
if ($_POST["bait"]!='' || $_POST["date"] == "12/31/69" || trim($_POST["date"] == "1969-12-31")) {
header("location: http://www.google.com");
} else {
//Process form here
I've done a var_dump on $_POST and it is 1969-12-31
What am I doing wrong?