Prova questa query
$query = "SELECT * FROM UFPProducts order by price ASC";
La query precedente elencherà tutti i prezzi in ordine crescente. Ma se vuoi avere un prezzo distinto raggruppato insieme, usa la query qui sotto.
$query = "SELECT * FROM UFPProducts group by price order by price ASC";