我正在尝试将我的查询结果显示为每行返回的三列。
设置是 3 个 div 全部漂浮在一个大包装内。够简单吧?
#wrapper {width: 650px;}
#left {width: 200px; float: left;}
#middle {width: 200px; float: left;}
#right {width: 200px; float: left;}
Results displayed like:
LEFT | MIDDLE | RIGHT
LEFT | MIDDLE | RIGHT
LEFT | MIDDLE | RIGHT
LEFT | MIDDLE | RIGHT
只是现在,我有这个 mysql 关联查询,我想在每一列中显示结果。
简单来说,我Column A
需要在left
div 中。
Columns B through Y
在middle div
.
Column Z
在right
分区中。
这是我的查询:
while ($row = mysql_fetch_assoc($result)) {
foreach ($row as $col => $val) {
if ($col == "Column A") {
//How to get this in left div?
}
if ($col != "Column A" && $col != "Column Z") {
//How to get this in middle div?
}
if ($col == "Column Z") {
//How to get this in right div?
}
}
}
我真的不知道从哪里开始。