im coding a simple php forum but when i logout / register / log in it doesnt redirect me back to the main menu and shows blank page instead heres example of my script
<?php
if(isset($_POST['do_logout'])){
//Create User Object
$user = new User;
if($user->logout()){
redirect('index.php','You are now logged out','success');
}
} else {
redirect('index.php');
}
?>
<?php
if(isset($_POST['do_logout'])){
//Create User Object
$user = new User;
if($user->logout()){
redirect('index.php','You are now logged out','success');
}
} else {
redirect('index.php');
}
?>