I have a simple registration form set up, on sending the details to my function to put the data in the database I want the page to redirect to a success page...
This works brilliantly on my local server but when I uploaded it to my live server its just not redirecting
The redirect that is not working is on line 65 :) it just redirects to register.php?success
Any help would be gratefully received. I've seen a few people have had the same problem but their solution would not work for me :(
ALL other header locations work. just this one won't :@
    <?php
    include 'core/init.php';
    //check if logged in
    logged_in_redirect();
    include 'includes/overall/header.php'; 
if (empty($_POST) === FALSE) {
    $required_fields = array('username', 'password', 'password_again', 'first_name', 'last_name', 'email');
    foreach ($_POST as $key => $value) {
        if (empty($value) && in_array($key, $required_fields) === true) {
            $errors[] = 'You appear to have missed something out, all fields are required.';
            break 1;
        }
    }
    if (empty($errors) === true) {
        if (user_exists($_POST['username']) === true ) {
            $errors[] = 'Sorry, the username \'' . $_POST['username'] . '\' is already taken.';
        }
        if (strlen($_POST['username']) < 6) {
            $errors[] = 'Sorry, your username must be at least 6 characters.';
        }
        if (strlen($_POST['username']) > 25) {
            $errors[] = 'Sorry, your username must be under 25 characters.';
        }
        if (preg_match("/\\s/", $_POST['username']) == true) {
            $errors[] = 'Your username must not contain any spaces.';
        }
        if (strlen($_POST['password']) < 6) {
            $errors[] = 'Sorry, your password must be at least 6 characters.';
        }
        if ($_POST['password'] !== $_POST['password_again']) {
            $errors[] = 'Sorry, your passwords do not match.';
        }
        if (filter_var($_POST['email'], FILTER_VALIDATE_EMAIL) === false ) {
            $errors[] = 'Sorry, you did not provide a valid email address.';
        }
        if (email_exists($_POST['email']) === true ) {
            $errors[] = 'Sorry, the email \'' . $_POST['email'] . '\' is already registered to an account.';
        }
    }
}
?>
<h1>Register</h1>
<?php 
if (isset($_GET['success']) && empty($_GET['success'])) {
    echo "You have been registered successfully.";
} else {
    if (empty($_POST) === false && empty($errors) === true) {
        // register user
        $register_data = array(
            'username'      => $_POST['username'],
            'password'      => $_POST['password'],
            'first_name'    => $_POST['first_name'],
            'last_name'     => $_POST['last_name'],
            'email'         => $_POST['email'],
            'email_code'    => md5($_POST['username'] + microtime())
        );
        register_user($register_data);
        //header location not working *********************
        header('Location: register.php?success');
        exit();
    } else if (empty($errors) === false) {
        //error output
        echo output_errors($errors);
    }
?>
    <form action="" method="post">
        Register your account here, all fields are required.
        <ul>
            <li>
                Username: </br>
                <input type="text" name="username"/>
            </li>
            <li>
                Password: </br>
                <input type="password" name="password"/>
            </li>
            <li>
                Repeat Password: </br>
                <input type="password" name="password_again"/>
            </li>
            <li>
                First Name: </br>
                <input type="text" name="first_name"/>
            </li>
            <li>
                Last Name: </br>
                <input type="text" name="last_name"/>
            </li>
            <li>
                Email: </br>
                <input type="text" name="email"/>
            </li>
            <li>
                <input type="submit" value="Register"/>
            </li>
        </ul>
    </form>
<?php 
}
include 'includes/overall/footer.php'; 
?>
 
     
     
    
Register
` sends headers, so any further `header()` call will fail. – Sebas Jul 17 '13 at 01:38