Advertisement
yagami07

eliminar

Feb 25th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. $id = $_GET['id'];
  4.  
  5. $con = new mysqli('localhost', 'root', '', 'adsi120_121');
  6.  
  7. $sql = "DELETE FROM Personas WHERE id = $id";
  8.  
  9. $resultado = $con->query($sql);
  10.  
  11. if ($resultado) {
  12. header('location: index.php');
  13. }else{
  14. echo "Error!";
  15. }
  16.  
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement