<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Ödeme Bildirimleri</h2>
<table id="table">
<thead>
<tr>
<th>Bildirim No.</th>
<th>Müþteri Ad Soyad</th>
<th>Ödeme Yaptýðý Banka</th>
<th>Ödeme Tarihi</th>
<th>Ödeme Yolu</th>
<th>Alan Adý</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
include '../ayar.php';
$listeisl = mysql_query("SELECT * FROM odemebildirimi");
while($listele = mysql_fetch_array($listeisl))
{
$oid = $listele['id'];
$odomain = $listele['alanadi'];
$otutar = $listele['tutar'];
$madsoyad = $listele['musteriadi'];
$obanka = $listele['odemebanka'];
$oyolu = $listele['odemeyolu'];
$otarih = $listele['odemetarihi'];
echo "<tr>
<td class=\"table_date\">$oid</td>
<td class=\"table_title\"><span class=\"approved\">$madsoyad</span></td>
<td>$obanka</td>
<td><span class=\"approved\">$otarih</span></td>
<td>$oyolu</td>
<td>$odomain</td>
<td><span class=\"approved\"><a href=\"odemebilsil.php?oid=$oid\">Sil</a> - <a href=\"odemeayrinti.php?oid=$oid\">Ayrýntýlar</a></span></td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>