Im trying to redirect the user after submitting a form. Im currently using Header("Location:http://www.google.com") as a test, but it stays on my site after submitting.
What am I doing wrong?
<?php
    $name = $_POST['name'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $from = 'From: Website'; 
    $to = 'contact@joakimsorensen.se'; 
    $subject = 'Hello';
    $human = $_POST['human'];
    $body = "From: $name\n E-Mail: $email\n Message:\n $message";
     if ($_POST['submit'] && $human == '4') {
    if (mail ($to, $subject, $body, $from)) {
    header("Location: http://www.google.com");
    echo 'great';
    } else { 
        echo '<span style="color:red"><p>Something went wrong, go back and try again!</p></span>'; 
    }
     } else if ($_POST['submit'] && $human != '4') {
    echo '<span style="color:red"><p>You answered the anti-spam question incorrectly!</p></span>';
    }
?>
It just prints out "great" from the echo.
 
     
    