Hey guys.
Well I'm getting that irritating warning on my site when loading up a specific page.
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/d6ayr7/public_html/webdevelopment.php:1) in /home/d6ayr7/public_html/masterpage.php on line 2
I've encountered and solved this problem before by moving session_start() to the top of my script before anything is outputted to the browser. I still have session_start() before anything is called, yet I still recieve the warning.
webdevelopment.php
<?php
require_once 'masterpage.php';
$page_title = 'Web Development';
echo head($page_title);
.
.
masterpage.php
<?php
session_start();
.
.
This occurs when I load the page webdevelopment.php, and as you can see I am still not outputting anything to the browser before session_start(), yet I still recieve the warning.
Any ideas?