0

您好,我有以下代码,这是对数据库中的结果进行排序,我如何设置它以便结果将显示在 2 个不同的列中,一个用于 template.channel_item.php,一个用于 template.channel_item.php,其中 2列将彼此相邻?

if(is_array($array)) {
foreach($array as $row) {
    include($basepath.'/templates/template.channel_item.php');
    include($basepath.'/templates/template.channel_item_title.php');
}
4

2 回答 2

0

无需使用循环

<div class="item-section" style="clear:both">
<div id="left-sidebar">
<?php include($basepath.'/templates/template.channel_item.php'); ?>
</div>

<div id="right-sidebar">
<?php include($basepath.'/templates/template.channel_item_title.php'); ?>
</div>
</div>

css

#left-sidebar, #right-sidebar { float: left; width: 400px; }
于 2013-03-26T02:46:31.033 回答
0
if(is_array($array)) {
foreach($array as $row) {

    echo '<div id="left">';
    include($basepath.'/templates/template.channel_item.php');
    echo '</div>';

    echo '<div id="right">';
    include($basepath.'/templates/template.channel_item_title.php');
    echo '</div>';
}

CSS

#right { float:left; width: 400px;}
#left { float:left; width: 400px;}
于 2013-03-26T02:42:01.737 回答