I have installed PHP Calendar. It works fine until I try to use PHP include.
When I include calendar/index.php by itself it works fine.
//Good!!!
<?php include ("calendar/index.php");?>
When I include my nav.php under calendar/index.php it works fine too.
//Good!!!
<?php include ("calendar/index.php");?>
<?php include ("nav.php");?>
But when I try to put nav.php on top of calendar/index.php I get an error.
//Bad!!!
<?php include ("nav.php");?>
<?php include ("calendar/index.php");?>
// Error //
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/tuckerw2/public_html/kapoleibuddhistsangha.com/nav.php:31) in /home/tuckerw2/public_html/kapoleibuddhistsangha.com/calendar/includes/setup.php on line 192
Warning: Cannot modify header information - headers already sent by (output started at /home/tuckerw2/public_html/kapoleibuddhistsangha.com/nav.php:31) in /home/tuckerw2/public_html/kapoleibuddhistsangha.com/calendar/includes/setup.php on line 213
nav.php is my navigation bar and I need it on top of calendar/index.php
Does anyone have any idea how I could fix this.