You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
335 B
13 lines
335 B
<?php
|
|
|
|
$database = new SQLite3("data.db");
|
|
$sql='select score, player from score where difficulty="easy" order by score desc limit 5';
|
|
$result = $database->query($sql);
|
|
//$a=$result->fetchArray();
|
|
|
|
$phrase="|";
|
|
while ($row = $result->fetchArray()) {
|
|
$phrase=$phrase."</br> ".$row["player"].":".$row["score"];
|
|
}
|
|
echo $phrase;
|
|
?>
|