In this tutorial you will learn how to create your own Highscores for your games, using your own free server / database. Let's go! Here's an example of how the...
Yes!
Open 'getscores.php' and replace "ORDER BY score DESC" (scores are ordered DESCending - higher first then lower) with "ORDER BY score ASC" (scores will be ordered ASCending - lowest values first, then higher)
// Retrieve data from database
$sql = "SELECT *
FROM scores
ORDER BY score DESC // Replace 'DESC' with 'ASC'
LIMIT 10"; // The 'LIMIT 10' part will only read 10 scores. Feel free to change this value