我无法在同一网页中显示文本文件的内容。代码如下(称为 display.php 文件)
<html>
<head>
<link rel="icon" type="image/png" href="logo.png">
<body>
<?php
$selectedfile = @$_POST['file_to_be_displayed'];
$content = file($selectedfile);
$data = implode("<br>",$content);
echo $data;
?>
<?php
$dirname = "<directory to be scanned for files>";
$dir = opendir($dirname);
echo '<form name="displayfile" action="output.php" method="POST">';
echo '<select name="file_to_be_displayed">';
echo '<option value="">Select File</option>';
while(false != ($file = readdir($dir)))
{
if((($file != ".") and ($file != "..") and (($file != "store_show_commands_switches.tcl" and $file != "switches.txt"))and (($file != "store_show_commands_routers.tcl" and $file != "routers.txt"))and (($file != "store_show_commands_firewalls.tcl" and $file != "firewalls.txt"))))
{
echo "<option value=".$file.">$file</option>";
}
}
echo '</select>';
echo '<input type="submit" value="display content of file" />';
echo '</form>';
?>
</body>
</html>
输出.php
<html>
<body>
<?php
$myFile =$_POST['file_to_be_displayed'];
$file = file_get_contents ("$myFile");
Echo $file;
?>
</body>
</html>
display.php 将扫描目录中的 txt 文件,并在下拉菜单中显示它们,旁边有一个按钮来显示所选文件。但是,一旦我单击按钮,我会得到一个没有结果的空白页面(它应该显示 txt 文件的内容)
有没有办法解决这个问题或者 - 甚至更好 - 有没有办法在同一个 display.php 中显示文件的内容(我认为它可以用 ajax 完成,但不确定如何)
谢谢潘泰利斯