Here is a query I am running. For some reason it outputs each find 23 times. So find 1 is 23 times, find 2 is 23 times etc... long page.
Has anyone got any idea here? I can't see how it could be doing this? and why this number?
$result = mysql_query("select TBTree.CategoryName, TBArticle.ArticleSubject, TBArticle.ArticleDateTime from TBTree, TBArticle where TBTree.CategoryName='Technology'");
$rows = mysql_num_rows($result);
for ($i = 0; $i < $rows; $i++)
{
$data = mysql_fetch_row($result);
echo "$data[1], $data[2]<br>\n";
}