EDIT** you posted that while i was posting this, so im trying that now and seeing what it changes..
new problem with the session_register gone now that ive noticed..
$_SESSION["user_session"];
i changed the session_register() to that and now the script on index.php that detects sessions, and when no session is detected it uses header to reloate back to index.php?status=login gives me an error..
<?php
if ($status == 'login') {
include("php/loginc.php");
}else{
include("php/indexc.php");
if (empty($_SESSION['user_session'])) {
header("Location: index.php?status=login");
}
}
?>
Warning: Cannot modify header information - headers already sent by (output started at /home/n3graphics/domains/n3graphics.com/public_html/notaloser/index.php:30) in /home/n3graphics/domains/n3graphics.com/public_html/notaloser/index.php on line 42
line 42 is the header...
anyone?