<?php include 'header.php'; ?>
<div id="tabledata" class="section">
<h2 class="ico_mug">Duyurular</h2>
<table id="table">
<thead>
<tr>
<th>Duyuru No.</th>
<th>Eklenme Tarihi</th>
<th>Duyuru Baþlýðý</th>
</tr>
</thead>
<tbody>
<?php
include 'ayar.php';
$listeisl = mysql_query("SELECT * FROM duyurular");
while($listele = mysql_fetch_array($listeisl))
{
$did = $listele['id'];
$dbaslik = $listele['baslik'];
$dtarih = $listele['tarih'];
echo "<tr>
<td class=\"table_date\">$did</td>
<td class=\"table_title\"><span class=\"approved\">$dtarih</span></td>
<td>$dbaslik</td>
</tr>";
}
?>
</tbody>
</table>
</div>
<?php include 'footer.php'; ?>