now im having problems with mysql_fetch_array()
PHP Code:
$catfields = $DB_site->query("SELECT id, name FROM " . TABLE_PREFIX . " item_cats");
while ($catinfo = $DB_site->fetch_array($catfields))
{
echo'<tr valign="top" align="center">
<td class="alt1" align="left"><b>$catinfo[name]</b></a> </td>
<td class="alt1"><a href="itemadmin.php?do=deloldcat&id=$catinfo[id]">Delete</a></td>
<td class="alt1"><a href="itemadmin.php?do=editoldcat&id=$catinfo[id]">Edit</a></td>
</tr>';
}
This is showing the right number of rows (ie same number of rows as in that database but the text it shows is $catinfo[name] and i cant see why, as far as i can tell the variable have the same name etc (slightly dyslixic so dont hold me to that

)