예제 #1
0
 public static function getKeyValueListDependent($table, $key, $value, $dependentField, $dependentValue)
 {
     $sql = 'select ' . $key . ', ' . $value . ' from ' . $table . ' where ' . $dependentField . ' = ' . $dependentValue . ' order by ' . $value;
     $params = array();
     return GenericDao::executeQuery($sql, $params, $table, true, false, false);
 }