Ciao, stavo provando a creare una classifica con php e mysql, per farla avevo questa tabella:
Codice PHP:
`id` int(11) NOT NULL AUTO_INCREMENT,
`Nome` varchar(50) NOT NULL,
`Punteggio` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
Mentre il codice in php
Codice PHP:
<?php
$query = "SELECT Nome,Punteggio FROM classifica ORDER BY Punteggio";
$result = mysql_query($query);
if (!$result) {
die("Errore nella query $query: " . mysql_error());
}
echo '
<table border="1">
<tr>
<td>Nome</td>
<td>Punteggio</td>
</tr>';
while ($row = mysql_fetch_assoc($result)) {
$nome = htmlentities($row['Nome']);
$punteggio = htmlentities($row['Punteggio']);
echo "<tr>
<td>$nome</td>
<td>$punteggio</td>
</tr>";
}
echo '</table>'
?>
Non riesco a capire perchč non si ordinano secondo il punteggio come ho inserito nella query, questa č la pagina dove stavo cercando di costruirla link, spero mi possiate aiutare e vi ringrazio in anticipo.
Avviso che non sono esperto in PHP