Menmapilkan Data Multi Kolom Horisontal [1]

Intro:Officially, the Xoom sold 250,000 units in under two months, while the PlayBook is believed to have sold 250,000 units in one month.

However, Moskowitz said there had been some indications that the Eee Pad Transformer tablet was selling out in the retail channel in April and May, but his research indicated the slate had not even made it to many of the targeted retail outlets prior to the supposed sell-outs.

One reason for the slower-than-expected sales, he cited, is that first generation of non-iPad tablets don't offer compelling price or enough features to drive incremental purchasers within vendors' projections.

Moreover, JP Morgan expects there to be limited build activity because tablet vendors are waiting to see how the back-to-school reception is, as well as waiting to launch 4G LTE tablets.

Ultimately, the firm puts consensus estimates for tablet shipments at around 50 million to 55 million units for 2011.

JP Morgan is hardly the first firm to adjust tablet estimates after Android Honeycomb tablets and the PlayBook failed to follow the iPad in setting the tablet world afire.

Inti:Menmapilkan Data Multi Kolom Horisontal [1]

Kalau biasanya kita menmapilkan data secara vertical, maka pada kasus tertentu ada kalanya data sebaiknya ditampilkan secar a horizontal.

Skrip gallery.php

<?php
$kolom = 3; // Tentukan banyaknya kolom

mysql_connect("localhost","root","pajarmaning");
mysql_select_db("dbphp");

$sql = mysql_query("select * from galeri");
echo "<table border=1><tr>";
$i = 0;
while ($data = mysql_fetch_array($sql)){
// Tampilkan data ke kolom kanan selama $i >= kolom
if ($i >= $kolom){
echo "</tr><tr>";
$i = 0;
}
$i++;
echo "<td align=center><br>
<a href='#'><img src='$data[gambar]' border=0><br>
$data[judul]</a><br><br></td>";
}
echo "</tr></table>";
?>