What does this error mean?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
xleft4dexy
Forum Newbie
Posts: 1
Joined: Mon Oct 06, 2003 3:25 am

What does this error mean?

Post by xleft4dexy »

<br />
<b>Warning</b>: Cannot send session cookie - headers already sent by (output started at /home/train01/php/admin_fns.php:2) in <b>/home/train01/php/insert_customer_form.php</b> on line <b>5</b><br />
<br />
<b>Warning</b>: Cannot send session cache limiter - headers already sent (output started at /home/train01/php/admin_fns.php:2) in <b>/home/train01/php/insert_customer_form.php</b> on line <b>5</b><br />
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

please read Warning: Cannot add header information
and keep in mind: the php-session handling uses cookies by default and cookies are sent as response header.
Post Reply