Erol adlı üyeden alıntı: mesajı görüntüle
hata verdi
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /homepublic_html/arananlar1.php on line 28
Tırnaklama hatası yapmışsın.

<?php
$row = 3; 
$coloumn = 5; 
$sonuc = mysql_query("Select kelime From arananlar order by zaman DESC limit 9999999999999999");
$a=1;
while($satir = mysql_fetch_array($sonuc)){
$kelime = $satir['kelime'];
echo '<table width="%100" border="0">'; 
for ($i = 0; $i < $coloumn; $i++) { 
    echo '<tr>'; 
    for ($j = 0; $j < $row; $j++) { 
        echo '<td>'.$a.' - <a title="'.$kelime.'" href="ara.php?q='.$kelime.'">'.$kelime.'</a>&nbsp;</td>'; 
    } 
    echo '</tr>'; 
} 
echo '</table>'; 

$a++;
}
?>