在PHP中列出目录

时间:2015-05-18 14:38:40

标签: php iframe

我有一个< iframe>当我"点击"我用这个列表显示的其中一个文件.html出现在这个< iframe>。我怎样才能做到这一点? 我需要更改具有<的src。 iframe>。现在唯一能做的就是打开一个新页面。谢谢。

<iframe id="probando" src="<?php echo $url; ?>" scrolling="auto" height="700" width="800" marginheight="0" marginwidth="0" name="probando"></iframe>

因为我可以这样做,所以它改变了给出点击的src。它唯一能做的就是开启一个新的。谢谢。 这是我的代码。

$directorioInicial = "./";    
$rep = opendir($directorioInicial);     
while ($arc = readdir($rep)) {       

if ($arc != '..' && $arc != '.' && $arc != '') {

    echo "<a href=" . $directorioInicial . "/" . $arc . " target='_blank'>" . $arc . "</a><br />";  
}
}
closedir($rep);      
clearstatcache();  

1 个答案:

答案 0 :(得分:1)

如果我理解正确,我认为您需要将链接的目标更改为“_self”而不是_blank。 有关详细信息,请参阅this page