[PHP] can any one help me on this

2008-07-09 Thread willyam pax
Warning:session_start():Canot send session cache limiter - headers already sent help me i dont understand this warning... but the program still works... thanks in advance... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] can any one help me on this

2008-07-09 Thread Bob
It's probably some white space above your session_start function. Make sure that there is no white space before your ?php start tag and try again. -Original Message- From: willyam pax Sent: 10 July 2008 13:13 To: php-general@lists.php.net Subject: [PHP] can any one help me

Re: [PHP] can any one help me on this

2008-07-09 Thread Robert Cummings
On Thu, 2008-07-10 at 11:13 +0800, willyam pax wrote: Warning:session_start():Canot send session cache limiter - headers already It means you have output going to the browser before you begin your session with session_start(). This usually means you have trailing whitespace in an included file