Hi
I am using the following code to logout:
my logout button calls logout.php
logout.php
<?
session_start();
session_destroy();
header("location:site.php");
?>
This doesnt seem to reidrect to my site.php page, it just loads a blank logout.php page, any ideas?