Exemple #1
0
 public static function getGameValuesBy($column, $type = null, $value = null)
 {
     // Returns the $column of Users whose $type field has value $value
     $gameRows = GameDB::getGameRowSetsBy($type, $value);
     return GameDB::getGameValues($gameRows, $column);
 }