我想知道是否有办法在HTML中每行只允许4个单元格...表格中只允许4个单元格,如果它超过4个tds,则会创建另一行...
我怎样才能在HTML中控制它?
答案 0 :(得分:1)
不,你似乎不明白你在问什么。 您不能仅使用 html自动执行此操作。您的问题与Html和Php有关。
这是一个快速而令人讨厌的工作:
$pdo = new PDO("mysql:host=$host;dbname=$dbName", $userName, $pwd);
$query = $pdo->prepare('select name from products order by id asc');
$query->execute();
echo '<table>';
echo '<tbody>';
$numCellsInRow = 0;
while ($curRow = $query->fetch())
{
if ($numCellsInRow == 4)
{
printf("</tr>");
$numCellsInRow = 0;
}
if ($numCellsInRow == 0)
{
printf("<tr>");
}
printf("<td>%s</td>", $curRow[0]);
$numCellsInRow++;
}
echo '</tbody>';
echo '</table>';
<强>结果强>
<table>
<tbody>
<tr>
<td>1" tweeter</td>
<td>6" sub</td>
<td>Sony Headphones</td>
<td>Magnifier</td>
</tr>
<tr>
<td>Red Led</td>
<td>Blue LED</td>
<td>7 segment LED</td>
<td>Lalique stained glass</td>
</tr>
<tr>
<td>LED downlight</td>
<td>BiPole light-switch</td>
<td>DC, 10amp</td>
<td>Monster Cable</td>
</tr>
<tr>
<td>Sata 2.0 Cable</td>
<td>Speaker Wire</td>
<td>USB 2.0 A to B Cable</td>
</tr>
</tbody>
</table>
答案 1 :(得分:0)
试试这个..没有经过测试..
$count = 0;
echo("<table><tr>");
foreach ($products as $product) {
if(($count % 4) == 0){
echo("</tr><tr>\n");
$count++;
}if
else{
$count++;
}
echo("<td>$product<td>");
}
echo("</tr></table>");