Вот php код:
$sql = "select * from thread where postuserid=$userid ORDER BY threadid DESC LIMIT $numer";
$result = @mysql_query($sql);
$text = "<TABLE border=0>";
while($topicforum = mysql_fetch_array($result))
{
$text .="<TR><TD colSpan=2><A href=\"forum/showthread.php?s=\&goto=lastpost\&threadid\=$topicforum['threadid'] \">
<LI>$topicforum['title']</LI></A></TD></TR><TR><TD>$topicforum['lastposter']</TD><TD>\[$topicforum['replycount']\]</TD></TR>";
}
$text .= "</TABLE>";
Он возвращает на месте злементов массива ($topicforum['threadid'], $topicforum['title'], $topicforum['replycount']) пустые значения.
Подскажите где ошибка?