我有一个带有缩略图和链接的相册样式页面设置。问题是由于某种排序问题,缩略图与文件夹及其连接的链接不匹配。该页面可以在http://www.remixnightclub.net/album.php以及代码中查看。关于我可以尝试使其正常工作的任何想法?如果这不是太明显的话,我对 php 比较陌生。
//if no album selected
if (!$get_album)
{
echo "<b>Select an album:</b><p />";
//find each album and display as links
$y = 0;
$handle = opendir($base);
while (false !== ($file = readdir($handle)))
{
if (is_dir($base."/".$file) && $file !="." && $file !=".." && $file != $thumbs)
{
echo "<table style='display:inline;' class='nav'><tr><td align='center'><a href='$page?album=$file'><img src='$base/$thumbs/$images[$i]'></a><br /><li><a href='$page?album=$file'>".$file."</a></li></td></tr></table>";
$i++;
if ($y==$column1)
echo "<br />";
$y = 0;
}
}
closedir($handle);
}
我没有使用数据库。