<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Alan Adý Uzantýlarý</h2>
<table id="table">
<thead>
<tr>
<th>Alan Adý No.</th>
<th>Uzantý</th>
<th>Kayýt Ücreti</th>
<th>Transter Ücreti</th>
<th>Yenileme Ücreti</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
include '../ayar.php';
$liste = mysql_query("SELECT * FROM alanadifiyat");
while($listele = mysql_fetch_array($liste))
{
$aid = $listele['id'];
$auzanti = $listele['uzanti'];
$akayit = $listele ['kayitfiyat'];
$atransfer = $listele['transferfiyat'];
$ayenileme = $listele['yenilemefiyat'];
echo "<tr>
<td class=\"table_date\">$aid</td>
<td class=\"table_title\"><span class=\"approved\">$auzanti</span></td>
<td>$akayit</td>
<td><span class=\"approved\">$atransfer</span></td>
<td>$ayenileme</td>
<td><span class=\"approved\"><a href=\"alanadiduzenle.php?aid=$aid\">Düzenle</a> - <a href=\"alanadisil.php?aid=$aid\">Sil</a></span></td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>