Re: [PHP-DB] help about session

2003-02-27 Thread Tatang Widyanto
Put start_session() statement on first line of your code - Original Message - From: "do khac duy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 27, 2003 13:31 Subject: [PHP-DB] help about session >i can't start session under incule row > ex: include("file.php"

RE: [PHP-DB] help about session

2003-02-27 Thread John W. Holmes
>i can't start session under incule row > ex: include("file.php"); > start_session(); > > it say : can't add header header already sent by...v > > somebody can help me? You can't have any output before session_start(). Call it first in your file or fix where you have output. The er