Jump to content
Fórum Script Brasil
  • 0

(Resolvido) apagar linha da tabela


zipzap

Question

eu tenho o seguinte código para mostrar os valores da bd na tabela:

<?php do { ?>
            <tr>
              <td><?php echo $row_CategoriasRL['categoria']; ?></td>
            </tr>
            <tr><a><img src="img/delete.jpg" width="16" height="16" /></a></tr>
            <?php } while ($row_CategoriasRL = mysql_fetch_assoc($CategoriasRL)); ?>

como na ancora redireccionar para uma função php que apague aquela linha da db com ou sem ajax

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

No link você pode colocar algo como:

<a href="remover.php?id=<?php echo $id; ?>">Remover</a>
Na página remover.php você pega o valor ($id = $_GET['id'], por exemplo) e executa a cláusula DELETE do SQL (utilizando a função mysql_query, por exemplo):
DELETE FROM tabela WHERE id = $id;

Se tiver dúvidas poste novamente.

Um abraço.

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