- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
34 lines
842 B
PHP
34 lines
842 B
PHP
<?php
|
|
session_start();
|
|
|
|
session_start();
|
|
|
|
$level= $_SESSION["level"];
|
|
if(!isset($_SESSION["level"]) || $level>=8) {
|
|
echo "<script> alert('관리자 승인이 필요합니다.') </script>";
|
|
sleep(2);
|
|
header ("Location:/login/logout.php");
|
|
exit;
|
|
}
|
|
|
|
$num=$_REQUEST["num"];
|
|
$page=$_REQUEST["page"];
|
|
|
|
require_once("../lib/mydb.php");
|
|
$pdo = db_connect();
|
|
|
|
try{
|
|
$pdo->beginTransaction();
|
|
$sql = "delete from chandj.motor where num = ?";
|
|
$stmh = $pdo->prepare($sql);
|
|
$stmh->bindValue(1,$num,PDO::PARAM_STR);
|
|
$stmh->execute();
|
|
$pdo->commit();
|
|
|
|
header("Location:/motor/list.php");
|
|
|
|
} catch (Exception $ex) {
|
|
$pdo->rollBack();
|
|
print "오류: ".$Exception->getMessage();
|
|
}
|
|
?>
|