我有这个代码here
<?php
$COUNT = 0;
if ($handle = opendir('.')) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != ".." & $count % 3 == 0) {
echo "<td><a href='$entry'>$entry</a></td>";
echo $Count;
$Count++;
}
else {echo "<tr><td><a href='$entry'>$entry</a></td><tr>";
echo $Count;
$Count++;
}
}
closedir($handle);
}
?>
我似乎无法让它工作。每次计数器是 3 的倍数时,我都想要一个新的表格行。