buy tb500

Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at

if you got the above error, you need to add the following code

session_start()

in your index.php   in the beginging

for example

<?php

session_start()

…..

…..

….

?>

References

http://bytes.com/topic/php/answers/664779-warning-session_start-function-session-start-cannot-send-session-cache-limiter

Leave a Reply