0

こんにちは、次のクエリを 3 列で表示する方法について教えてください。何も機能していないように見えるので、配列を読む必要があると思います..私のこのコードで実行できますか、それとも目的の結果を得る前にこれを書き直す必要がありますか?

<?php foreach ($this->items as $item) :?>
<?php if($item->state == 1 || ($item->state == 0 && JFactory::getUser()->authorise('core.edit.own',' com_bryllup'))):$show = true;?>
<input type="checkbox" name="<?php echo $item->felt_titel; ?>" value="<?php echo $item->felt_titel; ?>">
<h3><?php echo $item->felt_titel; ?></h3>
<p><?php echo $iyem->felt_beskrivelse; ?></p>
<?php endif; ?>

私が達成したいのは、次のようなものです。

-Result1------Result2------Result3-
-Result4------Result5------Result6-
-etc-----------etc-----------etc---
4

1 に答える 1

1

好きなものの図を追加したので、さらに簡単です。既存のループでそれを行うことができます

CSS

// set width to a third of the width of the containing div
div.result {
    width:250px;
    height:300px;
    float:left;
}

HTML

<?php foreach ($this->items as $item) :?>
<?php if($item->state == 1 || ($item->state == 0 && JFactory::getUser()->authorise('core.edit.own',' com_bryllup'))):$show = true;?>
<input type="checkbox" name="<?php echo $item->felt_titel; ?>" value="<?php echo $item->felt_titel; ?>">

<div class="result">
    <h3><?php echo $item->felt_titel; ?></h3>
    <p><?php echo $iyem->felt_beskrivelse; ?></p>
</div>

<?php endif; ?>
于 2013-04-16T18:04:03.867 に答える