In the code below:
$sth = $dbh->query('SELECT DISTINCT title,courseId,location from training');
$sth->setFetchMode(PDO::FETCH_ASSOC);
$results = $sth->fetchAll();
$uu = array_unique($results);
echo "<pre>";
print_r($uu);
echo "</pre>";
I only get 1 results from print_r($uu);
If I remove array_unique All (30+) rows are returned. (No, not all of them are duplicates) :)
What am I doing wrong?
EDIT var_dump() results:
array(23) {
[0]=>
array(3) {
["title"]=>
string(26) "String Here"
["courseId"]=>
string(1) "8"
["location"]=>
string(1) "1"
}
[1]=>
array(3) {
["title"]=>
string(26) "Another String Here"
["courseId"]=>
string(1) "8"
["location"]=>
string(1) "2"
}
[2]=>
array(3) {
["title"]=>
string(24) "Third String Here"
["courseId"]=>
string(1) "5"
["location"]=>
string(1) "2"
}
etc...
var_dump( $results);. – nickb Aug 22 '12 at 20:36array_uniquein the 1st place? Isn't that whatDISTINCTdoes? – Rocket Hazmat Aug 22 '12 at 20:44