Ben oldukça basit bir soru var, ama nedense ben boş bir çizim var. Benim görünümü dosyasında aşağıdaki kodu var, ve ben bir iki sütun tablo sonuçlarını görüntülemek istediğiniz, yani ilk giriş solda olurdu, sonraki ondan sonra bir sonraki altında olacağını doğru olurdu ilk satır, ve sonunda ben sonuçları ... 2 sütun biçiminde, sadece bir tane görüntülemek için nasıl anlamaya olamaz Nedense (kadar henüz kazanılmış değil) sayfalama sınıfı kullanır. Herhangi bir yardım büyük mutluluk duyacağız.
Ideally I would like to have 4 columns, but the code below was started with just the idea of 2 columns. Thanks!
<table>
db->query($sql); foreach ($query->result() as $row) { echo(""); echo("");
echo $row->Title;
echo ("<br/>");
?>
<img name="<?php echo $row->Thumb;?>" src=".. /uploaded/portfolio/thumbs/<?php echo $row->Thumb;?>" alt="">
<?php
echo("<br/>");
echo $row->DescText;
echo("</td>");
echo("<td>");
// Display next picture here
echo("</td>");
echo("</tr>");
}
?>
.. /