[Off] PHP~MySql.
#1

Bom, eu queria imprimir o valor de todas as contas em uma tabela em PHP.

Tipo assim:
Nome | Matou | Morreu |
Antonio Rodrigues | 5 | 0 |


Sei criar a tabela e conectar ao MySql porem nгo sei como getar o valor :S

Alguem me ajuda?

Tabela:
Reply
#2

http://php.net/manual/pt_BR/function...etch-array.php

Mini exemplo:
PHP код:
<?php
    $conn 
mysql_connect('localhost''user''pass');
    
mysql_select_db('database');
    
$query mysql_query("SELECT * FROM ranking ORDER BY matou DESC");
    while(
$result mysql_fetch_array($query)) {
        echo 
"Name: {$result['nome']} - Matou: {$result['matou']}<br />";
    }
Reply
#3

Код:
( ! ) Notice: Undefined index: nome in C:\wamp\www\index.php on line 17
Call Stack
#	Time	Memory	Function	Location
1	0.0003	366144	{main}( )	..\index.php:0

( ! ) Notice: Undefined index: matou in C:\wamp\www\index.php on line 17
Call Stack
#	Time	Memory	Function	Location
1	0.0003	366144	{main}( )	..\index.php:0
Name: - Matou:
Linha 17: echo "Name: {$result['nome']} - Matou: {$result['matou']}<br/>";
@edit fail meu... Thanks brother..

Com suas ajudas eu estou crescendo
Reply
#4

A melhor maneira de vocк conseguir o que quer й ajudar o maior nъmero de pessoas a conseguirem o que querem.
Reply
#5

PHP код:
$query mysql_query("SELECT * FROM ranking ORDER BY matou DESC"); 
while(
$result mysql_fetch_array($queryMYSQL_ASSOC)) { 
    echo 
'Nome '.$result['nome'].' | Matou '.$result['matou'].' | Morreu '.$result['morreu'].' |<br />';

Reply
#6

Quote:
Originally Posted by Joao Pedro
Посмотреть сообщение
A melhor maneira de vocк conseguir o que quer й ajudar o maior nъmero de pessoas a conseguirem o que querem.
Pois й..

Quote:
Originally Posted by paulor
Посмотреть сообщение
PHP код:
$query mysql_query("SELECT * FROM ranking ORDER BY matou DESC"); 
while(
$result mysql_fetch_array($queryMYSQL_ASSOC)) { 
    echo 
'Nome '.$result['nome'].' | Matou '.$result['matou'].' | Morreu '.$result['morreu'].' |<br />';

O "jгo" jб tinha ajudado mas valeu mesmo assim...

@Outra Dъvida..

da para usar a funзгo do html table com esse sistema?
Reply
#7

html table como assim? criar uma tabela a partir dos resultados?
Reply
#8

Quote:
Originally Posted by Joao Pedro
Посмотреть сообщение
html table como assim? criar uma tabela a partir dos resultados?
Exemplo:
PHP код:
<table width="200" border="1">
  <
tr>
    <
th scope="col">Nome</th>
    <
th scope="col">Matou</th>
  </
tr>
  <
tr>
    <
td>Nome Aqui</td>
    <
td>Matou Aqui</td>
  </
tr>
</
table
Reply
#9

PHP код:
$result mysql_query("SELECT * FROM ranking ORDER BY matou DESC");  
if (
mysql_num_rows($result) > 0
{
    echo 
"<table>";
    while (
$row mysql_fetch_assoc($result)) 
    {
        echo 
"<tr>"
        echo 
"<td>Nome: " $row['nome'] . "</td>"
        echo 
"<td>Matou: " $row['matou'] . "</td>";
        echo 
"</tr>";
    }
    echo 
"</table>";

Tente assim
Reply
#10

Quote:
Originally Posted by Gustavo_Araujo
Посмотреть сообщение
PHP код:
$result mysql_query("SELECT * FROM ranking ORDER BY matou DESC");  
if (
mysql_num_rows($result) > 0
{
    echo 
"<table>";
    while (
$row mysql_fetch_assoc($result)) 
    {
        echo 
"<tr>"
        echo 
"<td>Nome: " $row['nome'] . "</td>"; echo "<td>Matou: " $row['matou'] . "</td>";
        echo 
"</tr>";
    }
    echo 
"</table>";

Tente assim
Nгo era isso
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)