Hi, pulling the cookie after the log in gives this? It works as it displays the variable (simply, Welcome, Name) type thing.. but it shows this error at the top.
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/hughmr/public_html/index.php:1) in /home/hughmr/public_html/header.php on line 3
Which points to this in the header include:
<?php
//Start session
session_start();
?>
And gets pulled up later with this:
<?php echo $_SESSION['SESS_FIRST_NAME'];?>
Could someone advise basically what I'm doing wrong, I'm a little confused, it works (well, does what I want it to do!) but still gives the error.
Thanks in advance,