10Mar/06
This blog has been neglected due to the success of Solidshops.com
Check if its the first hit on a webpage using the session variable
session_start();
// Use $HTTP_SESSION_VARS with PHP 4.0.6 or less
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
} else {
$_SESSION['count']++;
}
?>
Popularity: 1% [?]


