<?php
include("includes/config.php"); 
$list = mysql_query("SELECT oyunresmi,oyunadi FROM oyunlar ORDER BY oyunid DESC LIMIT 0,9") or die ("Sorun var." .mysql_error()); 
echo "<table border=\"0\" width=\"800\" align=\"center\"> 
<caption>En Son Eklenen Oyunlar</caption>
    <tr>";
while($write = mysql_fetch_array($list)) { 
echo "
        <td valign=\"top\">" . $write[oyunadi] . "<br><img src=\"" . $write[oyunresmi] . "\" height=\"60\" width=\"60\"></td>";
$sayi++; 
    if($sayi ==3){ 
    echo "</tr><tr>"; 
    $sayi=0; 
    }
}
echo "</table> ";
?>
yukarıdaki kodlarda oyunid yazdım sql sorgusunda. id fieldi ne ise onun adını yazmalısın orda.

Deneyip sorunucu yazarsan problem varsa tekrar bakarız