zipzap Posted July 22, 2011 Report Share Posted July 22, 2011 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 Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted July 23, 2011 Report Share Posted July 23, 2011 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. Quote Link to comment Share on other sites More sharing options...
0 zipzap Posted July 24, 2011 Author Report Share Posted July 24, 2011 obrigado valeu Quote Link to comment Share on other sites More sharing options...
Question
zipzap
eu tenho o seguinte código para mostrar os valores da bd na tabela:
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.