Hi,
I am not an php progarmmer. This php code is for the hit counter
This is the code
<?php
$count = file_get_contents(“count.txt”);
//Increasing the count
$count = explode("=", $count);
$count[1] = $count[1]+1;
//Writing to file
$file = fopen(“count.txt”, “w+”);
fwrite($file, “count=”.$count[1]);
fclose($file);
//Returning the count
print “count=”.$count[1];
?>
its working fine but i need the out put value in 0001, 0002 ,0003 instead of 1,2,3
Please help me
Thanks