Thread: php sessions
View Single Post
Old 11-27-2003, 12:55 AM   #6 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,530
sde is on a distinguished road
make sure you have NO whitespace before you start your session. session functions need to happen in the header BEFORE anything is printed to the browser.

that is what is causing that error:

for example.. this is wrong
PHP Code:

<?
session_start
();

// notice the white space above the <? tag
// this is bad mmkay?
?>
this is right
PHP Code:
<?
session_start
();
// no white space or echo'ing to the browser before session is called
?>
__________________
Mike
sde is offline   Reply With Quote