任何人都可以帮助解决这个问题。我有2个文件php:
文件列表文件夹,该文件列表文件夹将$_REQUEST
发送为链接
例如:http://localhost/sertifikat/bacafolder.php?Link=%20Cipto%2075%20HGB%201159%20207%20M2
文件php用于执行和$ END的OPENDIR。 但即使该文件夹存在,它也无法工作
这是第二个文件php:
<?php
$Link=$_REQUEST['Link'];
$dir= $Link;
echo $dir;
if($opendir=opendir($dir))
{while(($file=readdir($opendir)) !=FALSE)
{
echo "<img src='$dir/$file'><br>";
}
}
?>