I'm not a PHP specialist. I get a fatal error code when I use this code. Can someone help me to solve my problem?
<?php
session_start();
session_register('kal');
if(session_is_registered('menu')==FALSE)
{
echo "you have no access !!!";
include('login.htm');
exit;
}
else
{
//echo "Access ok $login.";
}
?>