[Ajuda] Sobre mysql
#5

Passa tudo pra MySQL. Vai ser atй melhor pra vocк que pelo jeito deseja integrar aplicaзхes web com o server. Caso nгo queira passar tudo pra MySQL, existe um ranking em INI postado no fуrum, basta procurar

Criei esse ranking simples para vocк ver como se faz.

PHP код:
<?php
header
('Content-Type: text/html; charset=utf-8');
    
$conn mysql_connect("127.0.0.1""root""");
    
    if (
$conn) {
        
$db mysql_select_db("dbname");
    }
?>
    <center><table width = "50%" id = "tabela-rank" cellspacing = "2" cellpadding = "2" border = "0">
        <tr>
            <th style="background-color:brown;">Rank</th>
            <th style="background-color:brown;">Nome</th>
            <th style="background-color:brown;">Level</th>
        </tr>
    <?php
        $query 
mysql_query("select nome, level from users order by level desc");
        
        
$ranking 1;
        
        if (
$query) {
            while (
$obj mysql_fetch_object($query)) {
    
?>
        <tr>
            <th style="background-color:#eee;"><?php echo $ranking++. "є"?></th>
            <th style="background-color:#eee;"><?php echo $obj->nome?></th>
            <th style="background-color:#eee;"><?php echo $obj->level?></th>
        </tr>
    <?php
            
}
        } else {
            echo 
"Nгo foi possнvel realizar a consulta.";
        }
    
?>
    </table></center>
Reply


Messages In This Thread
Sobre mysql - by Russo66 - 09.09.2013, 03:03
Re: Sobre mysql - by PT - 09.09.2013, 03:13
Re: Sobre mysql - by Russo66 - 09.09.2013, 03:18
Re: Sobre mysql - by mau.tito - 09.09.2013, 10:10
Re: Sobre mysql - by Abravanel - 09.09.2013, 15:26
Re: Sobre mysql - by Russo66 - 09.09.2013, 15:32
Re: Sobre mysql - by Abravanel - 09.09.2013, 16:07

Forum Jump:


Users browsing this thread: 3 Guest(s)