Jump to content
Fórum Script Brasil
  • 0

select no php erro


felipepai

Question

ola galera estou tentando fazer select no meu php mais não dando certo, fiz campo insert

funciona correntamente mais do select olhei 300 tutorial mas não aparece nada

olha o codigo

<?php

include("config.php");

//Consulta com a tabela

//Selecione tudo de nomedatabela em ordem crescente pelo nome

$consulta=mysql_query("SELECT *FROM clientes order by nome ASC");

//Fazendo o looping para exibição de todos registros que contiverem em nomedatabela

while ($dados = mysql_fetch_assoc($consulta)) {

echo $dados["nome"];

echo '';

}

?>

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

ta dando algum erro?

eu uso o mysql_num_rows no lopping, assim...

include("config.php");

$consulta = mysql_query("SELECT * FROM clientes ORDER BY nome ASC"); 

while ($dados = mysql_num_rows($consulta)) {
  echo $dados['nome'];
}

Link to comment
Share on other sites

  • 0
ta dando algum erro?

eu uso o mysql_num_rows no lopping, assim...

include("config.php");

$consulta = mysql_query("SELECT * FROM clientes ORDER BY nome ASC"); 

while ($dados = mysql_num_rows($consulta)) {
  echo $dados['nome'];
}
desculpa eu me enganei NÃO é mysql_num_rows, e sim mysql_fetch_array, tava fazendo alguns testes aqui e acabei me confundindo, o codigo correto é esse...
include("config.php");

$consulta = mysql_query("SELECT * FROM clientes ORDER BY nome ASC"); 

while ($dados = mysql_fetch_array($consulta)) {
  echo $dados['nome'];
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...