0

こんにちは私は次のコードを持っています。これはデータベースからの結果を並べ替えています。結果が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
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 に答える
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 に答える