hai,
Thanks for your kind reply.
Here is the part where i set the session.
<?php
global $login_ID,$login_msgError;
session_start();
$adminname=$user;
session_register("adminname");
$address="/admin?do=main";
?>*This page is ok, no error.
The page with the error is like this:-
<head></head>
<title>tours88-Admin</title>
<? global $do,$login_ID ;
session_start();
?>
The page where destroy the session:-
<?php global $adminname;
session_unregister($adminname);
session_destroy();
header("location: /admin");
?>