Nieuw lid |
|
hallo ik heb hier de volgende code gevonden:
<?php
mysql_connect ('localhost','gebruikersnaam','paswoord' );
mysql_select_db ('database' );
$query = "SELECT id,titel FROM forum ORDER BY datum DESC LIMIT 5";
$uitvoer = mysql_query($query) or die (mysql_error());
echo("<table width=100% cellpadding=0 cellspacing=0 border=0>");
while($list = mysql_fetch_object($uitvoer))
{
echo("<tr><td>» <a href=?pagina=forum/topic&id=".$list->id."\" title='$list->titel'>");
if (strlen($list->titel) > 20)
{
$afgekortwoord1 = substr($list->titel,0,17)."...";
echo("$afgekortwoord1");
}
else
{
echo("$list->titel");
}
echo("</a><br></td></tr>");
}
echo("</table>");
?>
<?php $query = "SELECT id,titel FROM forum ORDER BY datum DESC LIMIT 5"; echo("<table width=100% cellpadding=0 cellspacing=0 border=0>"); { echo("<tr><td>» <a href=?pagina=forum/topic&id=".$list->id."\" title='$list->titel'>"); if (strlen($list->titel) > 20) { $afgekortwoord1 = substr($list->titel,0,17)."..."; } else { } echo("</a><br></td></tr>"); } ?>
hiermee kan je de laatste 5 forum posts uit de db halen.
Ik gebruik phpbb. Kan iemand mij uitleggen hoe deze werkt? ik wil ook een ander forum id gebruiken (uit mijn hoofd nr 16).
alvast bedankt!
|