Thread obsoleto [AIUTO]Query PHP

Fister

Utente Normale
Autore del topic
4 Aprile 2008
76
0
Miglior risposta
0
Ciao ragazzi,sto facendo un sito di un gioco,e in questo ci sto mettendo delle classifiche.ora sono arrivato alla classifica dell Online Time(tempo online),e,il database conta in secondi.ora sul PHP ho fatto in modo ke la query faccia diventare secondi in ore ...pero ora sul sito si visualizzano:Ore di gioco:127.04175754..etcetc...sapreste dirmi come levo i decimali??:help Grazie in anticipo!
 
$chars = mysql_query("SELECT characters.char_name, characters.onlinetime FROM characters WHERE characters.accesslevel < '1' ORDER BY characters.onlinetime DESC LIMIT 25") or die ('Query failed: ' . mysql_error());
questa e' la query

$display = 4;
$cols = 0;
$i=1;
$divisore=3600;
echo "<table>";
while($fetched = mysql_fetch_array($chars)){
if($cols == 0){
echo "<tr>\n";
}
// put what you would like to display within each cell here
echo "<tr><td>".$i.") </td><td>".$fetched[0]."</td><td>".$fetched[1]/$divisore."</td></tr>";
$cols++; $i++;
if($cols == $display){
echo "</tr>\n";
$cols = 0;
}
}
questo e' quello ke viene mostrato!