Possible Duplicate:
Headers already sent by PHP
Reference - What does this error mean in PHP?
<?php
include 'connect.php';
include 'header.php';
?>
<p>Mahtava is an organization dedicated to providing great services and web projects to people for free. We are passionate about the web and making it a better place for its citizens to live in. We have a strong emphasis on the user experience in whatever we do, and are focussed on keeping things the best for our users. Many of our projects are open source, and we always are inviting new developers to help with them or to develop projects of their own with us.</p>
<?php
include 'footer.php';
?>
What is wrong with the above code? It keeps giving me
'Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/u599980382/public_html/newsite/index.php:1) in /home/u599980382/public_html/newsite/connect.php on line 2'.
It doesn't do this on any other pages, not even a page with almost the same exact code (only the content is different); it only does this on the index. Thanks in advance for any help you may be able to provide.