我正在生成一些接近联系人列表的内容。我希望我的联系人根据他们的位置彼此相邻列出。
示例:
pos 0 | Pos 1
pos 2 | pos 3
我已经设法将结果放到表中但由于某种原因他们正在加载Screenshot,其中test1是位置0的项目,我希望Test Test位于左列,Test2 Test2是在右栏中。
我的代码:
<?php
$connection = connectToSql();
$query = "SELECT * FROM visitorsystem.employee";
$result = mysqli_query($connection,$query)
or die("Error in query: ". mysqli_error($connection));
?>
<form action="#" method="POST">
<table class="table" style = "margin-top:50px">
<?php
$i=0;
while ($row = mysqli_fetch_assoc($result)){
echo "$i";
if($i % 2 == 0 && $row != count($result)){
?>
<tr>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> <?php echo "$row[name]". " " . "$row[surname]";?> </h4>
</button>
</td>
<?php
}else
?>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> <?php echo "$row[name]". " " . "$row[surname]";?> </h4>
</button>
</td>
</tr>
<?php
$i++;
}
?>
答案 0 :(得分:4)
echo '<tr>';
while ($row = mysqli_fetch_assoc($result)){
?>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> <?php echo "$row[name]". " " . "$row[surname]";?> </h4>
</button>
</td>
<?php
$i++;
if($i % 2 == 0){
echo '</tr><tr>';
}
}
echo '</tr>';
始终回显相同的<td>
,并每2个条目更改一行。
答案 1 :(得分:0)
不要使用PHP,使用CSS,就像这样。
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
答案 2 :(得分:0)
考虑到结果集中奇数计数的可能性,仅使用模数生成表结构并不是一种可靠的方法。当数据不足时,您需要一些方法来完成行。
这是一个通过我自己的样本数据的选项,无论数据是偶数还是奇数,它都会“对齐”表:(PHP Demo)
$rows=[
['name'=>'Bob','surname'=>'Evans'],
['name'=>'John','surname'=>'Doe'],
['name'=>'Sue','surname'=>'Heck'],
['name'=>'Kevin','surname'=>'James'],
['name'=>'James','surname'=>'Brown']
];
$newtr=true;
foreach($rows as $row){
if($newtr){echo "<tr>";} // start a new row
echo "<td>";
echo "<button type=\"button\" class=\"btn btn-link\" style=\"width:100%;\">";
echo "<h4> {$row['name']} {$row['surname']} </h4>";
echo "</button>";
echo "</td>";
if(!$newtr){echo "</tr>";} // end a row
$newtr=!$newtr; // toggle value
}
if(!$newtr){echo "<td></td></tr>";} // if odd count in resultset, add a phantom cell and end row
输出:
<tr>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> Bob Evans </h4>
</button>
</td>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> John Doe </h4>
</button>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> Sue Heck </h4>
</button>
</td>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> Kevin James </h4>
</button>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-link" style="width:100%;">
<h4> James Brown </h4>
</button>
</td>
<td></td>
</tr>
如果你特别想使用模数技术,它的功能与上面相同:(假设结果集中至少有一行)
代码:(Demo)
$i=0;
echo "<tr>";
foreach($rows as $row){
if($i>0 && $i%2==0){echo "</tr><tr>";}
echo "<td>";
echo "<button type=\"button\" class=\"btn btn-link\" style=\"width:100%;\">";
echo "<h4> {$row['name']} {$row['surname']} </h4>";
echo "</button>";
echo "</td>";
++$i;
}
if($i%2){echo "<td></td>";} // if odd count in resultset, add a phantom cell and end row
echo '</tr>';