Code:
<?php
$iPad = 7;
$txt = file_get_contents("my/full/server/path/counter.txt");
if (!isset($_COOKIE['countplus']) || $_COOKIE['countplus'] != 1)
{
++$txt;
file_put_contents("my/full/server/path/counter.txt", $txt);
setcookie('countplus', 1, time()+86400);
}
$sTxt = str_pad($txt, $iPad, '0', STR_PAD_LEFT);
$iTxtLength = strlen($sTxt);
for ($i = 0; $i < $iTxtLength; ++$i)
{
print '<img src="../IMG/' . $sTxt[$i] . '.bmp" />';
}
?>
The images are in the atachment.
Reply me if you like it and add it to my reputation(I hate beeing a Junior Member) and visit my website
http://ionut.net63.net