Pon el codigo de esta manera:
Código PHP:
while($row = mysql_fetch_array($_pagi_result)){
$result2=mysql_query("select * from comentarios where id='".$row['id_noticia']."'",$connect) or die(mysql_error());
$totalcomentarios=mysql_num_rows($result2);
$result3=mysql_query("select * from usuarios where nick='".$row['autor']."'",$connect) or die(mysql_error());
$fila=mysql_fetch_assoc($result3);
print_r($fila);
Y dime que te sale en pantalla.