![]() |
|
Update My Activity
We'll create a web page for every activity for which we have a contact person and at least a little more information. If possible, provide a short desciption of your activity. New residents also appreciate knowing when you will meet so they can plan to join you.
If you need more space, eMail the description to the webmaster.
Be sure the subject starts with something like "KGC.cc Activity Update".
I get several hundred spam messages a day and this will help me recognize
yours. Sometimes my spam blocking program deletes eMails before I see
them, so if you don't get a reply in a couple of days, try again or use the form.
Return to: Top/Menu Home Page Site Map
//
//
/* Configuration */
$text = 1 ; // 0= graphic counter 1=text counter
$file="z-update.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 "";
}
}
?>