Advertisement
Gleidson_21

action_delete.php

Jun 29th, 2021
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1. <?php
  2. //Sessão
  3. session_start();
  4. //Conexão
  5. require_once 'db_connect.php'; // usado quando for utilizar o banco de dados
  6.  
  7. if (isset($_POST['btn-deletar'])) : // se foi clicado o botao de cadastrar Pegar os dados abaixo
  8.  
  9.   $id = mysqli_escape_string($connect, $_POST['id']);
  10.  
  11.   $sql = "DELETE FROM clientes WHERE id = '$id'";
  12.  
  13.  
  14.   if (mysqli_query($connect, $sql)) : // se foi possivel efetuar o comando sql
  15.     $_SESSION['mensagem'] = "Deletado com sucesso";
  16.     header('Location: ../index.php'); // redirecione a pagina principal e deixe na url uma msg de sucesso
  17.   else :
  18.     $_SESSION['mensagem'] = "Erro ao Deletar";
  19.     header('Location: ../index.php'); // redirecione a pagina
  20.   endif;
  21. endif;
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement