<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
<title>counter</title>
</head>
<body bgcolor="#D0E0ED" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
</body>
</html>
<?php
$text = 0 ;
$file="bazdid.count";
$images="images";
$imagesext=".png ";
echo "تعداد بازديد ";
if (!file_exists($file))
{
$fp =fopen($file,"w");
fputs ($fp,"0" );
}
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 "<img src=" ;
echo $images;
echo substr($numcount,$x,1);
echo $imagesext;
echo ">";
}
}
?>