Có lẽ một hàm hoặc một vòng lặp do.. while có thể theo thứ tự? Bằng chứng về khái niệm:
function menuQuery($id)
{
$query = "SELECT * FROM site_menu WHERE Menu_ParentID = $id";
if ($query) {
foreach($query AS $q) {
//run through the results
menuQuery($q->id);
}
}
}
//initial call of top level menu items
menuQuery(0);