<?php

require ('ayar.php');

$result = mysql_query ("SELECT * FROM yaz WHERE soru='$soru'");

echo '
<table>';

while ($data = mysql_fetch_assoc($result));
{
     echo '<tr><td>';
     echo $data['cevap'];
     echo '</td></tr>';
}

echo '
</table>';

?>