我想制作嵌入了PHP的HTML代码。 PHP代码允许我显示/ var / www / html / images中特定文件夹中的图片。当扩展名为.php的文件时,它可以工作,但当我将其更改为HTML时,它不会。我真的需要HTML格式,但图像不显示我收到这个
代码如下所示:
<!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/html; charset=iso-8859-1" />
<title>Gallery from Folder Demo</title>
<style type="text/css">
<!--
li{
list-style-type:none;
margin-right:10px;
margin-bottom:10px;
float:left;
}
-->
</style>
<form>
<input type="button" value="Return to Menu"
onclick=window.history.go(-2);
</form>
</head>
<body>
<ul>
<?php
$dirname = "images/";
$images = scandir($dirname);
arsort($images);
$ignore = array(".", "..");
foreach($images as $curimg){
if(!in_array($curimg, $ignore)) {
echo "<li><a href=\"$dirname$curimg\"><img src='img.php?src=$dirname$curimg&w=300&zc=1' alt='' /></a></li>\n ";
}
}
?>
</ul>
</body>
</html>
提前致谢。