Hi, Im new in PHP. I try to run the example session php but error, whats happen ?
below this is the scripts :
<?php
session_start();
session_register("count");
$count++;
?>
<html>
<head><title>sample session</title></head>
<body>
<h1>Demo Session</h1>
<?
echo "You have access this page for : $count time";
?>
</body>
</html>