Lid |
|
<?
mysql_connect("xxxx", "xxxx", "xxxx")or die("Geen verbinding.");
mysql_select_db("dbase_Forum") or die("geen verbinding.");
$kap = 35; //Aantal tekens dat van de topictitel worden weergegeven.
$limit = 5; //Aantal topics dat hij uit de database haalt.
$url_forum = 'http://forum.d-base.net'; //Vul hier de volledige forumurl in!
$sel = mysql_query("SELECT * FROM topic WHERE soort = '0' ORDER BY last2 DESC, last DESC LIMIT 0, ".$limit);
while ($topic = mysql_fetch_array($sel)){
$topicnaam = $topic['naam'];
if(strlen ($topicnaam) > $kap){
$topicnaam = substr ($topicnaam, 0, $kap);
}
echo '<a href="'.$url_forum.'/topic.php?topic='.$topic['id'].' target=_blank>'.$topicnaam.'</a><br />';
}
?>
<? $kap = 35; //Aantal tekens dat van de topictitel worden weergegeven. $limit = 5; //Aantal topics dat hij uit de database haalt. $url_forum = 'http://forum.d-base.net'; //Vul hier de volledige forumurl in! $sel = mysql_query("SELECT * FROM topic WHERE soort = '0' ORDER BY last2 DESC, last DESC LIMIT 0, ".$limit); $topicnaam = $topic['naam']; if(strlen ($topicnaam) > $kap){ $topicnaam = substr ($topicnaam, 0, $kap); } echo '<a href="'.$url_forum.'/topic.php?topic='.$topic['id'].' target=_blank>'.$topicnaam.'</a><br />'; } ?>
Ze geven weer dat er fout zit in deze line : while ($topic = mysql_fetch_array($sel)){
Maar ik weet niet ect wat daar fout in is de error is Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/dbase/public_html/index.php on line 92
|