我正在为我的网站创建 PHP 库。它将显示在普通 HTML 页面内的 iFrame 内。
<html>
<head><title></title></head>
<body>
<table><tr>
<?php
define('Photo_dir','img');
define('Columns',2);
$x=0;
$y=0;
$results = scandir(Photo_dir);
foreach ($results as $result)
{
if ($result === '.' or $result === '..') continue;
if (is_dir(Photo_dir.'/'.$result))
{
if($y > 2)
{
echo "</tr><tr>";
$y=0;
$x=&x+1;
}
echo "<td><img src='image.php?photo=".Photo_dir."/".$result."/1.jpg'/></td>";
echo "kod w html";
}
}
?>
</tr>
</table>
</body>
</html>
由于某种原因,它不起作用。浏览器甚至看不到<table>
提前致谢。