<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Destek Talepleri</h2>
<table id="table">
<thead>
<tr>
<th>Destek No.</th>
<th>Destek Talebi</th>
<th>Müþteri</th>
<th>Aciliyet</th>
<th>Açýlýþ Tarihi - Saati</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
include '../ayar.php';
$listeisl = mysql_query("SELECT id, baslik, aciliyet, tarih, kimden FROM desteksist");
while($listele = mysql_fetch_array($listeisl))
{
$dtid = $listele['id'];
$dtmusteri = $listele['kimden'];
$dtad = $listele['baslik'];
$dtacil = $listele['aciliyet'];
$dttarih = $listele['tarih'];
echo "<tr>
<td class=\"table_date\">$dtid</td>
<td class=\"table_title\"><span class=\"approved\">$dtad</span></td>
<td>$dtmusteri</td>
<td><span class=\"approved\">$dtacil</span></td>
<td>$dttarih</td>
<td><span class=\"approved\">Destek Talebini Kapat - Ayrýntýlar</span></td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>