<?
// db_result_to_array, called in get_categories
function db_result_to_array($result) {
$res_array = array();
for (
$count = 0;
$row = @mysql_fetch_array($result);
$count++
)
$res_array[$count] = $row;
return $res_array;
}
?>