I created this graphical counter, but it is not working...
<?php
$conn = fopen("count.txt","r");
$i = fgets($conn);
$ima = 1;
$src = ( strpos($i, $ima, 1) . ".gif" );
do
{
echo "<img src=\"$src\" />";
}
while ( $ima <= strlen($i) );
$i++;
fclose($conn);
$conn = fopen("count.txt","w");
fwrite($conn,$i);
fclose($conn);
?>
Note : It is working if i just display it as text image, and please note that the images ( from 0 to 9 ) are in the same folder of the counter php file and the flat text file...
Any help would be appreciated,
Regards