|
|
|
เกี่ยวกับการโชว์ไฟล์ข้อมูล word excel txt ขึ้นหน้าเว็บ |
|
|
|
|
|
|
|
ถ้าเป็นพวก Text ก็ตัวนี้ครับ
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>
PHP fopen(),fgets() read text file
|
|
|
|
|
Date :
2012-11-22 12:44:22 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะพี่วิน เด๋วจะลองไปหัดใช้ดูนะค่ะ
|
|
|
|
|
Date :
2012-11-22 13:37:56 |
By :
Ronna |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|