query("select distinct node_parent from nodes"); while ($set->next()) { $parent=$set->getString('node_parent'); $countset=$db->query("select count(*) as pocet from nodes where node_parent='$parent'"); $countset->next(); $pocet=$countset->getString('pocet'); $db->query("update nodes set node_children_count='$pocet' where node_id='$parent'"); } ?>