This picture makes nice desktop wallpaper. If your screen resolution is 600x800, just right-click on the image and choose "Set As Wallpaper". If your screen resolution is higher, get a larger version of the image by clicking on the appropriate link below. Once it loads, right-click on that image and choose "Set As Wallpaper".

Larger versions: 768x1024 or 1024x1280
Visits since September 25, 2003:
//
//
/* Configuration */
$text = 1 ; // 0= graphic counter 1=text counter
$file="visit.count"; // File that will be used to count
$images="dig990000/"; // directory of images or http
$imagesext=".gif"; // file extension .jpg, .gif or whatever your digits are
/* Do Not edit below this point unless you know what you are doing */
if (!file_exists($file)) // Look if file exists
{
$fp = fopen($file,"w"); //if it dosen't create it
fputs ($fp,"0" ); // lets add a 0 in it
}
else
{
$fp = fopen($file,"r+");
};
$numcount= fread($fp,filesize($file));
fclose($fp);
$numcount++;
$fp = fopen($file,"w");
fputs ($fp,$numcount);
if ($text)
{
echo $numcount;
}
else
{
$longstr = strlen($numcount);
for ($x=0; $x < $longstr; $x++)
{
echo "";
}
}
?>