我这里有这个 PHP 脚本
$z = range(2, 123);
echo '<table width="100%">';
foreach($z as $x){
echo '<td><a href="http://www.mysite.net/' . $x . '/"><img src="http://www.mysite.net/' . $x . '/5.jpg" width=200></a></td>';
}
echo '</table>';
我想要做的是在表格行中获取 6 个项目,然后是一个新行......我该怎么做?
谢谢,J