OPENDIR来自$ _REQUEST的值

时间:2018-10-19 08:39:24

标签: php opendir

任何人都可以帮助解决这个问题。我有2个文件php:

  1. 文件列表文件夹,该文件列表文件夹将$_REQUEST发送为链接 例如:http://localhost/sertifikat/bacafolder.php?Link=%20Cipto%2075%20HGB%201159%20207%20M2

  2. 文件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>";
        }
    }

?>

0 个答案:

没有答案