• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn tạo bộ đếm đơn giản bằng php

Admin

Well-Known Member
Staff member
Administrator
B1: Tạo 1 file với tên counterlog.txt

B2: Tiếp theo tạo thêm 1 file counter.php có nội dung như sau:

PHP:
<?php  
$viewss = file("counterlog.txt");  
$views = $viewss***91;0***93;; $views++;  
$fp = fopen("counterlog.txt", "w");  
fwrite($fp, $views);  
fclose($fp);  
?>

Bạn up 2 file này lên host, bạn CHMOD file counterlog.txt là 777. Để hiển thị bộ đếm này trên trang web bạn chỉ cần khai báo dòng này vào đầu trang là được:

PHP:
<?php  
include ("counter.php");  
?>

Đây là đoạn mã hiển thị bộ đếm trên site, đặt nó vào đâu thì tùy thuộc vào bạn:

PHP:
<?php  
print $views;  
?>
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top