I've tried a number of variations to get mongodb php to sort by score decending. It won't do it.
here's my script
$dd=array('gameID'=>(int)$gameID);
$s=array( 'score' => -1);
$cursor = $collectiontsWon->find($dd)->sort($s)->limit(7)->skip(0);
Everything is right, this is like the 8 variation of sort I've used. But it's NOT sorting by score decending on my site. What am I doing wrong?