i hoping to create a recursive function which i don\'t have an idea yet
this is my code to fetch category from database
I would do :
";
while($row = mysql_fetch_array($sql)) {
echo "- {$row['category_name']}";
getChildren($row['category_id']);
echo "
";
}
echo "";
}
getChildren();
?>