JuNiN-GyN Posted January 8, 2004 Report Share Posted January 8, 2004 Ola amigo como que eu uso a função "SELEC * FROM tabela WHERE condição" e possa mostrar na tela varias colunas.tipo $id $nome etc. Quote Link to comment Share on other sites More sharing options...
0 PERNAMBUCO_FJV Posted January 8, 2004 Report Share Posted January 8, 2004 $result = mysql_query("select * from tb_nome where nome='".trim($_POST["nome"])."'"); Quote Link to comment Share on other sites More sharing options...
0 PERNAMBUCO_FJV Posted January 8, 2004 Report Share Posted January 8, 2004 estilo isso!!só não entendi como você quer fazerselect * from tabela where condicao = id,nome??a condição pode ser igual ao id ou nome?? Quote Link to comment Share on other sites More sharing options...
0 edgar2000br Posted January 8, 2004 Report Share Posted January 8, 2004 Coloca tudo dentro de um arraytipo assim: $sql="select 8 from tabela where condicao='$condicao'"; $resultado=mysql_query($sql); $while ($linha=mysql_fetch_array($resultado)){ //essa linha coloca o resultado da pesquisa sql dentro de um array echo ("<BR>id=$linha[id]"); // o nome que fica dentro dos colchetes é o mesmo nome do campo da sua tabela no mysql, voce pode usar numeros tambem comecando do zero. echo ("<BR>nome=$linha[nome]"); } Espero ter ajudado. Quote Link to comment Share on other sites More sharing options...
0 edgar2000br Posted January 8, 2004 Report Share Posted January 8, 2004 Correcao!!!select 8 ..... não select * ...... hehehehe =) Quote Link to comment Share on other sites More sharing options...
0 JuNiN-GyN Posted January 8, 2004 Author Report Share Posted January 8, 2004 edgar2000brValeu manim é isso mesmo que eu quiria. Quote Link to comment Share on other sites More sharing options...
Question
JuNiN-GyN
Ola amigo
como que eu uso a função "SELEC * FROM tabela WHERE condição"
e possa mostrar na tela varias colunas.
tipo $id $nome etc.
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.