PDA

View Full Version : A doubt


Terminator
11-20-2004, 06:01 PM
I was coding a php site and this happened that it keep on saying
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /public_html/admin/admin.php:2) in /public_html/admin/admin.php on line 5

on line 5 it is session_start();

Please help me.

I used ob_start(); before that session_start().

688206002
11-20-2004, 07:22 PM
Is session_start before everything else? It needs to be the first thing.

Terminator
11-21-2004, 05:06 PM
Oh number guy. That was exactly the problem. Thank you. I was using it as some 4th and 5th lines.

Cool.