|
|
|
php รบกวนช่วยแก้ปัญหา ดึงข้อมูลจาก txt file มาแสดงบนเวปแบบให้มันขึ้นบรรทัดใหม่เหมือนที่เปิดใน notepad อ่ะครับ |
|
|
|
|
|
|
|
ใช้ \r\n ครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & writefile</title>
</head>
<body>
<?
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'w');
$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-06-15 06:10:33 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมคนเดียวกับที่ ตั้งกระทู้นะครับ พอดีลืม login
ว่าแต่คุณ mr.win คงเข้าใจผิดแล้วละครับ เพราะผมไม่ได้ สร้าง txt file มาเเล้วเขียนค่าๆ ลงไปครับ
บ้างคำสั่ง linux ผลลัพท์ออกมาเยอะมาก ถ้าทำอย่างคุณว่าผมต้องมานั่งใส่ \r\n ทุกอันน่ะครับ
|
|
|
|
|
Date :
2011-06-15 06:54:13 |
By :
thanapong.y |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|