-
Notifications
You must be signed in to change notification settings - Fork 0
/
dis-saku.php
28 lines (26 loc) · 1.04 KB
/
dis-saku.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
25
26
27
28
<?php session_start();?>
<?php
if (isset($_SESSION['customer'])) {
require 'header_member.php';
}else{
require 'header_form.php';
}
?>
<?php
$pdo=new PDO('mysql:host=mysql;dbname=;charset=utf8','', '');
//$pdo=new PDO('mysql:host=localhost;dbname=shop;charset=utf8','staff', 'PASSWORD');
if (isset($_SESSION['customer'])) {
$favo_sql=$pdo->prepare('DELETE FROM favorite WHERE custo_id=? AND shohin_id=?');
if($favo_sql->execute([$_SESSION['customer']['id'], $_REQUEST['id']])){
echo '<main class="form w-300 m-auto"><p style="text-align:center;margin: 0 auto;">お気に入りから商品を削除しました。</p></main>';
echo '</hr>';
require 'favorite.php';
} else {
echo '<main class="form w-300 m-auto"><p style="text-align:center;margin: 0 auto;">削除に失敗しました。</p></main>';
echo '</hr>';
}
} else {
echo '<main class="form w-300 m-auto"><p style="text-align:center;margin: 0 auto;">ログインしてください。</p></main>';
}
?>
<?php require 'footer.php';?>