Well now i've got them out from the DB,
but how do I make the link at the post???
I got the subject field, and want to make a link to the proper forum.
Plz help.
The code is:
$connect = mysql_pconnect(localhost, root, *********);
$db = mysql_select_db(phorum);
$stmt = "SELECT FROM nyhed order by id desc limit 5";
$result = mysql_query($stmt);
while($row = mysql_fetch_array($result)) {
echo $row["subject"];
echo "<br>";
}
?>
Thanks in advance
/JEsper