Search This Blog

Tuesday, 29 December 2009

Pertemuan 11

Hit Counter..
berikut script Hit Counter :

< ?
//baca file
$f="hit.txt";
$h=fopen($f,"r");
$c=fread($h,filesize($f));
fclose($h);
$isi=$c+1;

//tulis file
$f=fopen("hit.txt","w");
if($f){
fputs($f,$isi);
fclose($f);
}
else{echo"gagal";}

//baca file
$f="hit.txt";
$h=fopen($f,"r");
$c=fread($h,filesize($f));
fclose($h);

//menampilkan dilayar
echo"$c";
?>

No comments:

Post a Comment