anyway, open a new file named it a.php, copy this and tell me ur result,
i want to know whether u php is configured correctly to use session.
<?php
session_start();
// Use $HTTP_SESSION_VARS with PHP 4.0.6 or less
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
} else {
$_SESSION['count']++;
}
echo $_SESSION['count'];
?>
press refresh multiple times and u should see the number add 1 per refresh.