PHP קוד:
<?
include "config.php";
$sqlquery="SELECT * FROM topics";
$theresult=@mysql_query($sqlquery,$con);
?>
<html>
<meta name="generator" content="Namo WebEditor(Trial)">
<body>
<table border="1" width="25%">
<tr>
<td align="center"><b>נושא ההודעה</b></td>
<td align="center"><b>נשלח בתאריך</b></td>
</tr>
<?
while ($recordeset=@mysql_fetch_array($theresult))
{
echo "<tr>";
echo "<td><a href=view.php?id=".$recordeset["id"].">".$recordeset["title"]."</a></td>";
echo "<td><center>".$recordeset["date"]."</center></td>";
echo "</tr>";
}
?>
</TABLE>
<?php
mysql_close();
?>
</body>
</html>
תנסה את זה