コード例 #1
0
ファイル: cMainModel.php プロジェクト: Hyyudu/Cognitive
 public static function getEducationData()
 {
     if (!self::$education_data) {
         $query = "select 0 selected, e.id, e.name from educations e";
         self::$education_data = cDB::fetch($query);
     }
     return self::$education_data;
 }