Buradaki videoyu izleyerek aşağıdaki dosyaları oluşturdum.

http://www.youtube.com/watch?v=SiKV5Su3hbw




index.php
<html>
<meta charset="utf-8">
<body>

<form id="form1" name="form1" methot="post" action="kayit_al.php">
<label for="no"></label>
<input type="text" name="no" id="no"/>
<input type="submit" name="btn" id="btn" value="Bilgileri Getir"/>
</form>
</body>
</html>
kayit_al.php
<?php

$host="localhost";
$kullaniciadi="root";
$sifre="";
$db="kemal";
$no=$_POST['no'];
$al=$no;

mysql_connect("$host","$kullaniciadi","$sifre") or die ("Sunucuya baglanilamadi");
mysql_select_db("$db") or die ("Veri tabanina baglanilamadi");
$aliyoruz=mysql_query("select * from ozluk where tc=$al");

while ($bilgiler=mysql_fetch_assoc($aliyoruz)) {

echo "TC:$bilgiler[tc]<br/>";
echo "Geldiği Ev:$bilgiler[ev]<br/>";
echo "Adı:$bilgiler[adi]<br/>";
echo "Soyadı:$bilgiler[soyadi]<br/>";
echo "Puanı:$bilgiler[puan]<br/>";
echo "Yüzdelik:$bilgiler[yuzdelik]<br/>";
echo "Kazandığı Yurt:$bilgiler[yurt]<br/>";
}
?>


Ama şu resmini koymuş olduğum hata çıkıyor. Nasıl çözebilirim?