Exemplo n.º 1
0
 public static function category_id(DbSimple_Database $db)
 {
     $res = $db->select("SELECT  id , parent_id ,  category  FROM categorys WHERE parent_id IS NOT NULL");
     $data = array();
     foreach ($res as $v) {
         $data[$v['parent_id']][$v['id']] = $v['category'];
     }
     return $data;
 }