Home | Webboard
|
Chatroom
|
Guestbook |
Tips and Tricks |
IRC helper|
Top
Downloads|
Free Links |
Webmaster
|
|
บทที่ 4 : บทเรียน PHP 4.1 PHP พิมพ์ข้อความอย่างง่าย 4.2 อ่านข้อความจาก Mysql มาแสดงผล 4.81 Upload ด้วย php
listfile.php ดูรายชื่อแฟ้ม
โดยใช้ include file สำหรับตรวจ guser และ gpassword ที่เหมาะสมกับแฟ้ม password.pl
<?
include("updateinclude.php");
setupinit();
$dir_handle = opendir($fpath);
echo "<pre><font size=4 face=fixed>";
while($list = readdir($dir_handle)) {
if (substr($list,0,1) <> "." and $list <> "mail" and $list <>
"bash_profile" and
$list <> "pico.save" and $list <> "password.pl") {
echo $list." - ".filesize("$fpath/$list")." Byte<br>";
}
}
closedir($dir_handle);
?>