<?php
$_GET['th'] = (empty($_GET['th']))? "" : $_GET['th'];
$th = htmlspecialchars(trim($_GET['th']));
$result = mysql_query("SELECT * FROM FILE where isim like'".$th."%' order by isim asc") OR die(mysql_error());
if(
mysql_num_rows($result))
{
while(
$row = mysql_fetch_assoc($result)) {
echo
'<a href="' . $row['link'] . '" target="_blank">' . $row['isim'] . '</a>' ;
echo
'<br>';
}
}
else
{
echo
"<p>MP3 Yok</p>\n";
}
?>