我想通过iframe显示文本文件,但它在IE中不起作用。它在Mozilla Firefox中运行良好。有什么想法吗?
以下是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/plain; charset=ANSI" />
</head>
<body>
<iframe src='http://localhost/button3.txt'
scrolling='no' frameborder='0'
style='border:none; width:1300px; height:500px'></iframe>
</body>
</html>
button.txt包含用php编写的脚本。而不是显示它执行它的脚本。
答案 0 :(得分:0)
我是PHP的初学者。以下答案基于我在搜索时找到的内容:
将IFrame的src设置为PHP文件:
<iframe src='http://localhost/showTxt.php' scrolling='no' frameborder='0' style='border:none; width:1300px; height:500px'></iframe>
<强> showTxt.php 强>:
1
<?php
echo file_get_contents("test.txt");
?>
OR
2 的
<?php
$output=file_get_contents("test.txt");
highlight_string($output);
?>