Advertisement
MizunoBrasil

Delete PHP pelo ID

May 23rd, 2022
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <?php
  2. session_start();
  3. include_once("conexao.php");
  4. $id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_NUMBER_INT);
  5. if(!empty($id)){
  6.     $result_usuario = "DELETE FROM arquivos WHERE id='$id'";
  7.     $resultado_usuario = mysqli_query($conn, $result_usuario);
  8.     if(mysqli_affected_rows($conn)){
  9.         $_SESSION['msg'] = "<p style='color:green;'>Registro apagado com sucesso</p>";
  10.         header("Location: index.php");
  11.     }else{
  12.        
  13.         $_SESSION['msg'] = "<p style='color:red;'>Erro o registro não foi apagado com sucesso</p>";
  14.         header("Location: index.php");
  15.     }
  16. }else{  
  17.     $_SESSION['msg'] = "<p style='color:red;'>Necessário selecionar um registro</p>";
  18.     header("Location: index.php");
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement