Versuchen Sie:
$getquery = "(SELECT *
FROM highscore
WHERE score >= '$score'
ORDER BY score ASC
LIMIT 6)
UNION ALL -- guaranteed to be beneficial in this case as Johan commented
(SELECT *
FROM highscore
WHERE score < '$score'
ORDER BY score DESC
LIMIT 5)";
Siehe Kommentare zu meiner Antwort auf die zugehörige Frage
.
Oder konsultieren Sie das feine Handbuch
.