|  
 Membre | Bonjour. Je tente d'utiliser votre soft de forum et je suis confronte a un problème de changement de code de msql vers msqli. A la ligne 72 de index.php, j'ai cette erreur qui me torture. Je voudrais avoir votre lumière si possible. merci -------------------
 Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\forum\index.php on line 72
 -----------------------
 Ligne de index
 70 $dn1 = mysqli_query($link,"select c.id, c.name, c.description, c.position, (select count(t.id) from topics as t where t.parent=c.id and t.id2=1) as topics, (select count(t2.id) from topics as t2 where t2.parent=c.id and t2.id2!=1) as replies from categories as c group by c.id order by c.position asc");
 71 $nb_cats = mysql_num_rows($dn1);
 72 while($dnn1 = mysqli_fetch_array($dn1))
 
 
 |