-
Notifications
You must be signed in to change notification settings - Fork 14
/
delete_produit.php
24 lines (22 loc) · 1.15 KB
/
delete_produit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
include('config.php');
if (isset($_SESSION['user'])) {
if ($_SESSION['user']['ROLE'] == "1") {
if (isset($_GET['num'])) {
$idproduit = $_GET['num'];
$data = "SELECT * FROM `produit` WHERE `id` LIKE '".$idproduit."'";
$dataproduit = $base->query($data)->fetch_array(MYSQLI_ASSOC);
if (!empty($dataproduit)) {
$base->query("DELETE FROM produit WHERE id=".$idproduit."");
}
header('Location: list_produit.php');
}else{
header('Location: list_produit.php');
}
}else{
header('Location:index.php');
}
}else{
header('Location:login.php');
}
?>