Arkadaşım tek tırnak çift tırnak kullanımına dikkat et
$sonuc =mysql_query("SELECT id, ad, hit FROM yazilar ORDER BY hit DESC LIMIT 5");
while( $satir = mysql_fetch_assoc($sonuc)){
echo $satir['hit'];
//echo $satir['id']; //yazı idi
//echo $satir['ad']; //yazı adı
echo '<a href ="http://www.siten.com/dosya.php?id='.$satir['id'].'" title="'.$satir['ad'].'">'.$satir['ad'].'</a>';
}