prepare('DELETE FROM login_usuarios WHERE id = ?'); $stmt->bind_param('s',$id); if($stmt->execute()) { if($stmt->affected_rows > 0){ $_SESSION['msg'] = "Usuário excluido com sucesso!"; header("Location: list_login.php"); } else{ $_SESSION['msg'] = "Falha na exclusão."; header("Location: list_login.php"); } } $stmt->close(); ?>