this is the first time I have ever seen an error like this I have checked and double checked that nothing is sent before the SESSION is created...so I assuming that it's giving the second and third errors b/c of the firsrt error sent.
What would cause this problem creating the session. Below I have included the snippet of code I use to create the session.
Warning: session_start(): The session id contains invalid characters, valid characters are only a-z, A-Z and 0-9 in /home/ccandpc/public_html/admin_login.php on line 3
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/ccandpc/public_html/admin_login.php:3) in /home/ccandpc/public_html/admin_login.php on line 3
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/ccandpc/public_html/admin_login.php:3) in /home/ccandpc/public_html/admin_login.php on line 3
<?
//start session if one doesn't exsist
session_start();
if (!PHPSESSID){
session_register('login');
}
else if ((!$login)){
session_register('login');
}
?>
Strange...It wAs working fine then I moved thes ite and now it's gone haywire..:-| ANyideas..
Thanks