|
|
|
อยากได้ code counter แบบ php แบบเก็บใน Textfile ครับ webmaster thaicreate.com กรุณาด้วย |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & Readfile</title>
</head>
<body>
<?
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'r');
if ($objFopen) {
while (!feof($objFopen)) {
$file = fgets($objFopen, 4096);
echo $file."<br>";
}
fclose($objFopen);
}
?>
</body>
</html>
Code (PHP)
<head>
<title>ThaiCreate.Com PHP & Readfile</title>
</head>
<body>
<?php
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName,"r");
fseek($objFopen,4);
$dtData = fread($objFopen,60) ;
echo $dtData;
?>
</body>
</html>
Ref : PHP Files
|
|
|
|
|
Date :
2009-04-25 08:17:00 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2010-11-10 13:42:01 |
By :
Chaan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$last_num = (int) file_get_contents('counter.txt');
$last_num++;
file_put_contents('counter.txt', $last_num);
..กำ.. กระทู้เก่า
|
ประวัติการแก้ไข 2010-11-10 14:13:10
|
|
|
|
Date :
2010-11-10 14:12:21 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|