session unset
Posted: Thu Jun 17, 2004 12:27 am
Code: Select all
<?php
session_start();
session_unset();
session_destroy();
header("Location: http://.com/index1.php");
?>Any ideas?
Thank you
Anthony
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
session_start();
session_unset();
session_destroy();
header("Location: http://.com/index1.php");
?>