Code PHP - Hiển thị tất cả các file trong thư mục
Bạn đang tạo trang upload bằng php ? Mà nó không có kết nối cơ sở dữ liệu MYSQL nhưng bạn muốn liệt kê danh sách file trong thư mụcHãy xem code sau đây để biết cách nhé.
<?php$dir = "./";
if (
if (is_dir($dir)) {
if ( if ($dh = opendir($dir)) {
while (( while (($file = readdir($dh)) !== false) {
echo echo "Filename: $file <br>";
}
} closedir($dh);
}
} }}?>
Chúc các bạn thành công
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment