Skip to content

Instantly share code, notes, and snippets.

View MitziMercedes's full-sized avatar

Marissa MitziMercedes

View GitHub Profile
@jameshibbard
jameshibbard / gist:4143381
Created November 25, 2012 12:51
A session-based visitor counter
<?php
session_start();
$counter_name = "counter.txt";
// Check if a text file exists. If not create one and initialize it to zero.
if (!file_exists($counter_name)) {
$f = fopen($counter_name, "w");
fwrite($f,"0");
fclose($f);
}