Thursday, October 16, 2014

Php Miniproject

Write php code in the notepad then drive your sarvar
<?php
//counter of alquranbd.com
$filecount = "counter.dat";
if(!file_exists($filecount)){echo"The counter database $filecount couldn't be found."; exit;}
$fp = fopen ("$filecount", "rb");
           while(!feof($fp))
           {
              $total= fread($fp,1024);
           }
fclose($fp);
if($total == ''){$total="1";}
else{$total += 1;}
$fp2 = fopen ("$filecount", "w");
fwrite($fp2, $total);
fclose($fp2);
echo ' '. $total;
?>

No comments:

Post a Comment