$Kontrol = fopen("college.txt", "r");
if ($Kontrol){
while (($Satır = fgets($Kontrol)) !== false) {
mysql_query("INSERT INTO tablo (universiteler) VALUES ('$Satır')") ;
}
fclose($Kontrol);
} else {
echo 'Bir Hata Oluştu !';
}