Possible Duplicate:
PHP: “Notice: Undefined variable” and “Notice: Undefined index”
if(isset($_POST['bul']))
{
$marka1=$_POST['marka'];
$model1=$_POST['model'];
$que="SELECT * from otomobil_tablosu WHERE markasi='$marka1' AND modeli='$model1'";
$res=mysql_query($que);
while($row = mysql_fetch_row($res)){
echo "<tr>";
echo "<td>" . $row['otomobilID'] . "</td>";
echo "</tr>";
}
when I want to print the row of table there is undefined index warning... I could not find the problem