| Blue Heron Art Gallery
|
|
Recent Watercolors | About the Artist | Directions |
Blue Heron Art Gallery
RR1 Box 59, Marshville Road
Harrington, Maine 04643
(207) 483-4725
blueheron@midmaine.com
© Copyright 2003 by Carter Hazel
and Cherryfield.net -- All rights reserved
//
//
/* Configuration */
$text = 1 ; // 0= graphic counter 1=text counter
$file="count.site"; // File that will be used to count
$images="dig/"; // directory of images or http (no longer used)
$imagesext=".gif"; // file extension .jpg .gif or anything you like
/* 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 "";
}
}
?>
visits since 10/1/2003