- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
21 lines
586 B
PHP
21 lines
586 B
PHP
<?php
|
|
$num=$_REQUEST["num"];
|
|
|
|
require_once("../lib/MYDB.php");
|
|
$pdo = db_connect();
|
|
|
|
try{
|
|
$pdo->beginTransaction();
|
|
$sql = "delete from chandj.memo_ripple where num = ?"; //db만 수정
|
|
$stmh = $pdo->prepare($sql);
|
|
$stmh->bindValue(1,$num,PDO::PARAM_STR);
|
|
$stmh->execute();
|
|
$pdo->commit();
|
|
|
|
header("Location:http://localhost/memo/memo.php");
|
|
} catch (Exception $ex) {
|
|
$pdo->rollBack();
|
|
print "오류: ".$Exception->getMessage();
|
|
}
|
|
?>
|