Jump to content
Fórum Script Brasil
  • 0

Recuperar E Excluir...


Guest - carlos -

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

  • 0

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...";

}

?>

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
      651.8k
×
×
  • Create New...