gpt4 book ai didi

php - 多列后换行

转载 作者:行者123 更新时间:2023-11-30 00:39:31 26 4
gpt4 key购买 nike

大家好,我对编程不太有经验,所以这可能很容易实现。

我正在使用 php 从 mysql 表中提取数据,我想像这样显示输出:

$row[1] $row[2]换行符

$row[3] $row[4] 换行符

$row[5] $row[6]换行符

等等

如有任何帮助,我们将不胜感激

$user_table = select_table( "users", "user_name ASC" );  
$rows = array( );

while( $row = mysqli_fetch_assoc( $user_table ) ) {
$rows[] = $row;
}

$user_groups = array_chunk( $rows, 2 );

foreach ( $user_groups as $user_group ) {

echo "<tr>";

foreach( $user_group as $row ) {

echo "<td class=\"user-box\">{$row["user_name"]}</td>";
}
echo "</tr>";
}

这是我的工作代码。谢谢蒂姆

最佳答案

循环计算结果并在 2 后重新开始计数。这是一个使用简单数组和表格的示例,您可以了解它是如何工作的

<?php

$results = array('one','two','three','four');

echo '<table border="1">';

foreach(array_chunk($results,2) as $row) {

echo '<tr>';

foreach($row as $value) {
echo '<td>'.$value.'</td>';
}

echo '</tr>';
}

echo '</table>';

关于php - 多列后换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21890027/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com