Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- include_once("conexao.php");
- $id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_NUMBER_INT);
- if(!empty($id)){
- $result_usuario = "DELETE FROM arquivos WHERE id='$id'";
- $resultado_usuario = mysqli_query($conn, $result_usuario);
- if(mysqli_affected_rows($conn)){
- $_SESSION['msg'] = "<p style='color:green;'>Registro apagado com sucesso</p>";
- header("Location: index.php");
- }else{
- $_SESSION['msg'] = "<p style='color:red;'>Erro o registro não foi apagado com sucesso</p>";
- header("Location: index.php");
- }
- }else{
- $_SESSION['msg'] = "<p style='color:red;'>Necessário selecionar um registro</p>";
- header("Location: index.php");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement