<?PHP
$products = "SELECT * FROM Products ORDER BY id DESC";
$result = mysql_query($products) or die ("Query Failed");
echo "<table width=\"100%\" border=\"1\">";
echo "<TR>";
$i=1;
while ($row = mysql_fetch_object($result)){
echo "<td colspan=\"2\"><font face=\"arial\" size=\"2\">$row->title</font></td>";
if ($i%2 == 0) {
echo "</TR><TR>";
}
echo "<td><font face=\"arial\" size=\"2\">$row->description</font></td>";
echo "<td><IMG SRC=\"upload/$row->image\" width=\"50\" height=\"50\"></td>";
$i++;
}
echo "</TR>";
echo "</table>";
?>
I didn't test it, but that should work