<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Sipariþ Paketleri</h2>
<table id="table">
<thead>
<tr>
<th>Sipariþ Paket No.</th>
<th>Sipariþ Paketi</th>
<th>Web Alaný</th>
<th>Aylýk Trafik</th>
<th>Lokasyon</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
include '../ayar.php';
$listeisl = mysql_query("SELECT * FROM hostingpaketleri");
while($listele = mysql_fetch_array($listeisl))
{
$spid = $listele['id'];
$spad = $listele['paketadi'];
$spalan = $listele['webalani'];
$sptrafik = $listele['trafik'];
$sploc = $listele['sunuculoc'];
echo "<tr>
<td class=\"table_date\">$spid</td>
<td class=\"table_title\"><span class=\"approved\">$spad</span></td>
<td>$spalan</td>
<td><span class=\"approved\">$sptrafik</span></td>
<td>$sploc</td>
<td><span class=\"approved\"><a href=\"sippduzenle.php?spid=$spid\">Düzenle</a> - <a href=\"sippsilindi.php?spid=$spid\">Sil</a> - <a href=\"siparispdetay.php?spid=$spid\">Ayrýntýlar</a></span></td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>