require_once "include/config.php";
include "head.php";
include "top.php";
?>
include "nav.php" ?>
LINKS
$sql="select * from links order by indexer";
$query=@mysql_query($sql);
while($row=mysql_fetch_assoc($query)){
$row["description"]=nl2br($row["description"]);
echo "| $row[title] | $row[description] |
\n";
}
?>
include "foot.php";
?>