Hello,
I just solved a Bug , but I still don't understand why the last sentence was not working proprerly...
I've been changing a
I just solved a Bug , but I still don't understand why the last sentence was not working proprerly...
I've been changing a
Code: Select all
$sql = "SELECT player_id, player_score FROM player ";
$result= self::getCollectionFromDb( $sql);
with
$sql = "SELECT * FROM player ";
$result= self::getCollectionFromDb( $sql);
to get all the players... even I need few fields, if not, the "result" contains half of the players!!!!
Someone could explain to me why????
thanks.