<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Destek Taleplerim</h2>
<table id="table">
<thead>
<tr>
<th>Destek No.</th>
<th>Destek Talebi</th>
<th>Aciliyet</th>
<th>Açýlýþ Tarihi - Saati</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
include 'ayar.php';
$ads = $_SESSION['adsoyad'];
$listeisl = mysql_query("SELECT id, baslik, aciliyet, tarih FROM ticket WHERE kimden='$ads'");
while($listele = mysql_fetch_array($listeisl))
{
$dtid = $listele['id'];
$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>$dtacil</td>
<td><span class=\"approved\">$dttarih</span></td>
<td><span class=\"approved\"><a href=\"dtsil.php?dtid=$dtid\">Destek Talebini Sil</a> - <a href=\"dtduzenle.php?dtid=$dtid\">Destek Talebini Düzenle</a> - <a href=\"dtayrinti.php?dtid=$dtid\">Ayrýntýlar</a></span></td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>