on my pages I get the following warning:
Warning:
session_start() [function.session-start]:
Cannot send session cache limiter - headers already sent (output started at/home/com10002/public_html/compo/index.php:1
) in/home/com10002/public_html/compo/index.php
on line 1
My code says:
<?php session_start();
require_once("lib/lib.inc.php");
$form_page = "Compensation-Claims";
?>
The page works fine but I want to turn the warning off so that visitors dont see the warning. I removed the code that says:
error_reporting(E_ALL);
ini_set("display_errors","1");
any ideas?