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!
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/www/???/logindone.php:10) in /home/www/???/logindone.php on line 11
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/www/???/loginpassdone.php:10) in /home/www/???/loginpassdone.php on line 11
When the header function is sent twice that error will happen. So you might have this line in your main file and in another file that is included to the first file.
and with sessions starts, they must always be on the top of the page at hand. you must open the php page and start the session. sessions starts must be on every page too! if you have a config.inc.php they might not be needed if its always included into another file.