Guest - carlos - Posted August 22, 2005 Report Share Posted August 22, 2005 Em uma tabela háNomeABquero que esses dados sejam exibidos como através de uma consulta ao banco, assim:NomeABAo escolher uma das linhas posso exclui-la no banco.Como consigo isso, exibir os dados da tabela e excluir um item selecionado.obrigado. Carlos Quote Link to comment Share on other sites More sharing options...
0 Tenko Posted August 22, 2005 Report Share Posted August 22, 2005 Vê se isso te ajuda.// Este é o código para a página php<?php $id= $_GET['id']; if( empty( $id ) ) { montaLista(); } else { excluirBanco(); }?><? function montaLista() { global $id; $sSql = "SELECT "; $sSql .= "ID , "; $sSql .= "NOME "; $sSql .= "FROM "; $sSql .= "NOMEBANCO "; $sSql .= "WHERE "; $sSql .= "CAMPO_ID "; $sSql .= "= "; $sSql .= "'".$id."' "; $result = mysql_query( $sSql ); while( $linha = mysql_fetch_array( $result ) ) { ?> Id = <a href=excluir.php?id =<?php echo $linha['id]; ?>"><br> Nome = <?php echo $linha['nome']; ?><br> <? } } function excluirBanco() { global $id; $sSql = "DELETE "; $sSql .= "FROM "; $sSql .= "NOMEBANCO "; $sSql .= "WHERE "; $sSql .= "CAMPO_ID "; $sSql .= "= "; $sSql .= "'".$id."' "; $result = mysql_query( $sSql ); echo "Registro excluido com sucesso..."; }?> Quote Link to comment Share on other sites More sharing options...
Question
Guest - carlos -
Em uma tabela há
Nome
A
B
quero que esses dados sejam exibidos como através de uma consulta ao banco, assim:
Nome
A
B
Ao escolher uma das linhas posso exclui-la no banco.
Como consigo isso, exibir os dados da tabela e excluir um item selecionado.
obrigado. Carlos
Link to comment
Share on other sites
1 answer 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.