can a session be passed through a meta refresh?
<?
// tupac
session_start();
// if username and password correct do this -->
session_register("name");
// end tupac
on main page
and that refreshes to
<?
// tupac
session_start();
// back to login if you don't login first!!!! -->
if(!session_is_registered("name")) {
include("not.htm");
exit;
} else {
echo "script no work";
}
// end tupac
?>
put it doesnt work.. it just goes to NOT.htm even when i log in..
and I totaly suck at PHP so please bare with me when you help me out.. thanks..
-Toby