HSF
FOOD PRO-TECH PVT. LTD Opposite
Air Force Station,Dabwali Road SIRSA-125 055 Haryana(India) Phones:+91-1666-41539,
+91-1666-41639,
Fax:+91
1666 41839
| You
are visitor number |
//******************************************************************************
#####################################################################
# Counter
#####################################################################
$version = "0,21";
# PLEASE EDIT THE FOLLOWING VARIABLES:
$counterstyle = "image";
# Invisible: If you want this counter script to count the number of
# hits, but you DON'T want the number of hits to be displayed on
# your page, then say "yes" here. Otherwise say "no".
$invisible = "no";
# NO MORE EDITING NECESSARY.
# The height and width of the digit image files. You don't need to
# change these unless you decide to use other image files than the
# ones that came with this scripts.
$height = "19";
$width = "15";
# The full path to the hits file. No trailing slash ("/").
# If the hits file is in the same directory as this script, you
# can leave this blank.
$hitsfile = "";
# The full path to the images directory. No trailing slash ("/").
# If the images directory is in the same directory as this script,
# you can leave this blank.
$images = "";
# THAT'S IT!
if (!$hitsfile) $hitsfile = dirname(__FILE__)."/hits";
if (!$images) $images = dirname(__FILE__)."/images";
$images = str_replace($DOCUMENT_ROOT, "", $images);
$hits = file($hitsfile);
$hits = $hits[0] + 1;
# Opening the hits file and writing the number of hits:
$fp = fopen($hitsfile, "w");
fwrite($fp, $hits);
if ($invisible != "yes") {
# Text counter
if ($counterstyle == "text") {
echo $hits;
}
# Image counter
else {
$digit = strval($hits);
for ($i = 0; $i < strlen($hits); $i++) {
echo " ";
}
}
}
//**************************************************************************************************
?> | to
view this site | |