|
|
|
เรียนถามท่านผู้รู้นับจำนวนผู้เข้าชมwebรันในเครื่องเราได้แต่เวลาเอาขึ้นwebแล้วอ่านค่าไม่ได้ช่วยด้วยค่ะ |
|
|
|
|
|
|
|
<?php //ถ้ายังไม่มีไฟล์ counter.txt ให้สร้างขึ้นมา โดยเก็บตัวเลข 0 ไว้
if (file_exists("counter.txt") == false){
$fp = fopen("counter.txt", "w");
fputs($fp, 0);
fclose($fp); } //เปิดไฟล์ counter.txt แล้วอ่านตัวอักษร 6 ตัวแรกมาเก็บไว้ที่ตัวแปร $pgcount
$fp = fopen("counter.txt", "r");
$pgcount = fgets($fp, 6);
fclose($fp);
++$pgcount; //เพิ่มค่าตัวแปร $pgcount ขึ้น 1
$pgcount = "00000".$pgcount; //เติม 00000 นำหน้า //ตัดสตริงให้เหลือ 6 ตัวอักษร โดยเอาทางขวาของสตริงเป็นหลัก
$pgcount = substr($pgcount, -6); //เขียนค่าของตัวแปร $pgcount กลับลงสู่ไฟล์ counter.txt
$fp = fopen("counter.txt", "w");
fputs($fp, (int) $pgcount);
fclose($fp);
//เปิดไฟล์ counter.txt แล้วอ่านตัวอักษร 6 ตัวแรกมาเก็บไว้ที่ตัวแปร $pgcount
$fp = fopen("counter.txt", "r");
$pgcount = fgets($fp, 7);
fclose($fp);
for ($i=6-strlen($pgcount); $i>0; $i--){
$pcounter = $pcounter.'<IMG SRC="images/0.PNG" BORDER="0" ALT="">';
$tcounter = $tcounter."0";}
for ($i=0; $i<=strlen($pgcount)-1; $i++){
$pcounter = $pcounter.'<IMG SRC="images/'.$pgcount[$i].'.PNG" BORDER="0" ALT="">';
$tcounter = $tcounter.$pgcount[$i];}
echo "Visitors ".$tcounter; ?>
Tag : PHP, HTML/CSS
|
|
|
|
|
|
Date :
2012-03-07 14:36:04 |
By :
มือใหม่ |
View :
1007 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmode 777 to file. txt
|
|
|
|
|
Date :
2012-03-07 15:12:08 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กรอก cmode 777 ที่ไหนค่ะ ไม่เข้าใจค่ะ ช่วยชี้แนะด้วยค่ะ
|
|
|
|
|
Date :
2012-03-07 15:18:05 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|