I want to be able to get the results of the following query, at the moment it's just showing the results that begin with a capital letter:
$glossary = "SELECT * FROM glossary WHERE authorisation='y'AND item REGEXP BINARY '^A' OR '^a' ORDER BY 'item' ASC";
Any ideas how this can be done?