PandoraBox: Membuat Hit Counter PHP
Demo Blog

Membuat Hit Counter PHP

by Sapto Mexavriand kategori :

Adalah sebuah fasilitas yang berfungsi untuk menghitung jumlah pengunjung Website kita.

Demo Cookies untuk Counter


<?
if (!isset($tamu))
{
$namafile="counter.txt";
if (!file_exists($namafile))
{
$fp=fopen($namafile,"w");
fwrite($fp,"0");
fclose($fp);
}
$fp=fopen($namafile,r);
$urut=fread($fp,5);
fclose($fp);
$urut++;
$fp=fopen($namafile,"w");
fwrite($fp,$urut);
fclose($fp);
setcookie("tamu",$urut);
if
(!isset($OK)){
header("Location: $PHP_SELF","?OK=1");
exit;
}
}
?>
<html>
<body>
<h1>Demo Cookies untuk Counter</h1>
<?
echo "Anda pengunjung ke : $tamu";
echo "Script file : $PHP_SELF";
?>
</body>
</html>
Kemudian simpan dengan nama coba14_1.php
Nilai cookies dan Counter tidak tampil pada saat pertama kali, klik tombol refresh maka isi cookies dan Counter akan ditampilkan.

14.2. Demo Session Reset Counter


<?
session_start();
$idsession=session_id
$count++
?>
<html>
<body>
<h1>Demo Session Reset Counter</h1>
<?
echo "<br> ID Session : ".$idsession;
echo "<br> Anda mengakses server ini sebanyak".$count;
?>
</body>
</html>
Share



Baca Artikel Terkait Lainnya:

0 komentar Read More ...

0 komentar


Posting Komentar

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!