<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Müþteriler</h2>
<table id="table">
<thead>
<tr>
<th>Müþteri No.</th>
<th>Müþteri Ad Soyad</th>
<th>Mail Adresi</th>
<th>T.C. No.</th>
<th>Telefon Numarasý</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
include '../ayar.php';
$listeisl = mysql_query("SELECT * FROM musteriler");
while($listele = mysql_fetch_assoc($listeisl))
{
$mid = $listele['id'];
$madsoyad = $listele['adsoyad'];
$mtelno = $listele['telno'];
$mmail = $listele['mail'];
$tcnobas = $listele['tcno'];
$mnotlar = $listele['notlar'];
echo "<tr>
<td class=\"table_date\">$mid</td>
<td class=\"table_title\"><span class=\"approved\">$madsoyad</span></td>
<td>$mmail</td>
<td><span class=\"approved\">$tcnobas</span></td>
<td>$mtelno</td>
<td><span class=\"approved\"><a href=\"mailgonder.php?mid=$mid\">Mail Gönder</a> - <a href=\"musteriduzenle.php?mid=$mid\">Düzenle</a> - <a href=\"musterisilindi.php?mid=$mid\">Sil</a> - <a href=\"musteriayrinti.php?mid=$mid\">Ayrýntýlar</a></span></td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>