ok, i got a file which is a header and displays my header content.
i try to put this in the header but i get an error
session_start();
Warning: Cannot send session cache limiter - headers already sent (output started at /usr/www/users/shafey7s/client.php:1) in /usr/www/users/shafey7s/client.php on line 2
here is where i call the header
$title="test";
include("header.php");
ive also tried to put
session_start();
at the beginning of the file, is their anyway to put session_start();
in the header and not get an error?