Así rápidamente:
$letra_minuscula = strtolower($letra);
Y la consulta:
Código PHP:
$getdiscos=mysql_query("SELECT * from phpbb_topics AS t LEFT JOIN phpbb_users AS u ON u.user_id=t.topic_poster WHERE t.forum_id='".$categoria."' AND t.topic_type='0' AND t.topic_moved_id='0' AND (t.topic_title LIKE '$letra%' OR t.topic_title LIKE '$letra_minuscula%') ORDER BY t.topic_title ASC");
Podría ser algo así....