gpt4 book ai didi

php - 动态行垂直向下并在六行后创建列

转载 作者:行者123 更新时间:2023-12-02 05:20:17 26 4
gpt4 key购买 nike

我正在尝试创建这样的动态行:

[1] [7] [13]

[2] [8] [14]

[3] [9] [15]

[4] [10]

[5] [11]

[6] [12]

目前,我的输出是这样的:

[1] [2] [3]

[4] [5] [6]

[7] [8] [9]

[10] [11] [12]

[13] [14] [15]

我想在创建另一列之前按字母/数字向下输出 6 行。下面的代码用于在一行中创建 3 个数据,然后为另外 3 个数据创建另一行,依此类推。很抱歉无法附上我喜欢输出的图像。

<?php

$query = "SELECT name FROM categories WHERE parent_id=1 ORDER BY order_id ASC";
$result = mysql_query($query) or die ("Query failed");

$numrows = (mysql_num_rows ($result));


if($numrows >0){
echo "<table width = 100% border = '0' cellspacing = '2' cellpadding = '0'><tr>";

for ( $i = 0; $i <= 3; $i++)
{

echo "<td width='33%'>";

while ($friendList = mysql_fetch_array($result)){

$end = '<div class="left">'.$friendList['name'].'</div>';
if ( isset($friendList[$j+6] ))
{
$end = '<div class="right">'.$friendList[$j+6].'</div>';
}
echo $end."\n";

}
echo "</td>";
}
echo $end."</tr></table> ";

}

?>

谢谢。

最佳答案

既然您知道返回的行数,$numrows,那么您可以利用它来预先构建您的表,并在完成对记录的循环后进行组装。

$maxRows = 6;
$numCols = ceil($numRows / $maxRows);

在构建表的过程中,您将遍历返回的值并将输出分配给一个数组。添加所有记录后,您将组装并输出表格。

注意:您需要确保您的记录在查询中正确排序,因为编号仅用于索引。

<?php

$numRows = 41;
$maxRows = 6;
$numCols = ceil($numRows / $maxRows);

$records = array();

for($i=1; $i <= $maxRows; $i++){
$records[$i] = array();
}

for($i=1; $i <= $numRows; $i++){
$row = ($i % $maxRows == 0 ? $maxRows : $i % $maxRows);
$records[$row][] = "[$i]";
}

$table = ['<table>'];

for($i=1; $i <= count($records); $i++){
$row = ['<tr>'];
$col = $records[$i];

for($j=0; $j < count($col); $j++){

/*
* Begin modification area:
*
* You would change the value of $col[$j] to reflect the desired
* output within each cell.
*/

$output = $col[$j];

/* End modification area */

$row[$j+1] = '<td>' . $output . '</td>';
}
array_push($row, '</tr>');
$table[$i] = implode('', $row);
}

$table[$i++] = '</table>';
echo implode('', $table);

?>

输出:

[1] [7]  [13] [19] [25] [31] [37] 
[2] [8] [14] [20] [26] [32] [38]
[3] [9] [15] [21] [27] [33] [39]
[4] [10] [16] [22] [28] [34] [40]
[5] [11] [17] [23] [29] [35] [41]
[6] [12] [18] [24] [30] [36]

关于php - 动态行垂直向下并在六行后创建列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11459601/

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