Read file
$filename = "counter00.gif";
$fd = fopen ($filename, "r");
echo 'length of file:'.filesize($filename);
$contents = fread ($fd, filesize ($filename));
fclose ($fd);
echo '
length of read string:'.strlen($contents);
echo '
content of read string:'.$contents;
?>