I have this code:
$dbInstance = DB_Instance::getDBO(); $statement = $dbInstance->prepare(\"SELECT id, name FROM la
I think you might be looking for $result = $sth->fetch(PDO::FETCH_ASSOC);
$result = $sth->fetch(PDO::FETCH_ASSOC);
Reference: http://php.net/manual/en/pdostatement.fetch.php
[edit] oops to late :)