- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
24 lines
555 B
PHP
24 lines
555 B
PHP
<?php
|
|
$num=$_REQUEST["num"];
|
|
$pass=$_REQUEST["pass"];
|
|
|
|
require_once("../lib/mydb.php");
|
|
$pdo = db_connect();
|
|
try {
|
|
$pdo->beginTransaction();
|
|
$sql="update dbchandj.phonebook set ppw=? where num=?";
|
|
$stmh=$pdo->prepare($sql);
|
|
$stmh->bindvalue(1,$pass,PDO::PARAM_STR);
|
|
$stmh->bindvalue(2,$num,PDO::PARAM_STR);
|
|
|
|
$stmh->execute();
|
|
$pdo->commit();
|
|
|
|
header("Location:https://dh2024.co.kr/index.php");
|
|
|
|
} catch (PDOException $Exception) {
|
|
$pdo->rollBack();
|
|
print "오류: ".$Exception->getMessage();
|
|
}
|
|
?>
|