hello, i'm a beginner. Can anybody figure what cause this warning message.
Warning: Cannot send session cache limiter - headers already sent (output started at /home/ahchew/public_html/tryS.php:1) in /home/ahchew/public_html/tryS.php on line 3
your name is ahchew
here is my code:
<?php
session_start();
session_register("nama");
$nama = "goh jit siang";
include("try.inc");
htmlHeader();
echo"your name is $nama\n\n";
htmlFooter();
?>
here is the include file
<?
function htmlHeader(){
echo ("<head><title>TRY</title></head><body>");
}
function htmlFooter(){
echo ("</body>");
}
?>
thanks !
ahchew1413