The variable $letter is an English letter.
How can I put a WHERE clause on the query below so that it only returns results where title that start with the same letter as the variable $letter?
$letter = $_GET['letter'];
$query2 = "select title, COUNT(*) as titlerows from submission
GROUP BY title
order by title asc
LIMIT $offset, $rowsperpage";
Edit: