|
|
|
การทำ logfile มีลักษณะการทำอย่างไรบ้างครับ โดยใช้ textfile ให้เก็บการล็อกอินของ User |
|
|
|
|
|
|
|
เวลา login ตอนกดปุ่ม login ให้insertค่าเวลาลงตาราง logfile ในdb งี้ได้ไหมค่ะ
|
|
|
|
|
Date :
2011-09-02 12:55:07 |
By :
LuckyStar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็แค่ write text file ปกติน่ะครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & writefile</title>
</head>
<body>
<?
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'a');
$strText1 = "I Love ThaiCreate.Com Line1\r\n";
fwrite($objFopen, $strText1);
$strText2 = "I Love ThaiCreate.Com Line2\r\n";
fwrite($objFopen, $strText2);
$strText3 = "I Love ThaiCreate.Com Line3\r\n";
fwrite($objFopen, $strText3);
if($objFopen)
{
echo "File writed.";
}
else
{
echo "File can not write";
}
fclose($objFopen);
?>
</body>
</html>
Go to : PHP fopen(),fwrite() write text file
|
|
|
|
|
Date :
2011-09-02 13:04:54 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับพี่วิน
|
|
|
|
|
Date :
2011-09-02 13:14:00 |
By :
noppawut |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|