- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
36 lines
977 B
PHP
36 lines
977 B
PHP
<?php session_start(); ?>
|
|
<meta charset="utf-8">
|
|
<?php
|
|
if(!isset($_SESSION["userid"])) {
|
|
?>
|
|
<script>
|
|
alert('로그인 후 이용해 주세요.');
|
|
history.back();
|
|
</script>
|
|
<?php
|
|
}
|
|
$content=$_REQUEST["content"];
|
|
|
|
require_once("../lib/MYDB.php");
|
|
$pdo = db_connect();
|
|
|
|
|
|
try{
|
|
$pdo->beginTransaction();
|
|
$sql = "insert into chandj.memo(id, name, nick, content, regist_day)";
|
|
$sql.= "values(?, ?, ?, ?,now())";
|
|
$stmh = $pdo->prepare($sql);
|
|
$stmh->bindValue(1, $_SESSION["userid"], PDO::PARAM_STR);
|
|
$stmh->bindValue(2, $_SESSION["name"], PDO::PARAM_STR);
|
|
$stmh->bindValue(3, $_SESSION["nick"], PDO::PARAM_STR);
|
|
$stmh->bindValue(4, $content, PDO::PARAM_STR);
|
|
$stmh->execute();
|
|
$pdo->commit();
|
|
|
|
header("Location:http://localhost/memo/memo.php");
|
|
} catch (PDOException $Exception) {
|
|
$pdo->rollBack();
|
|
print "오류: ".$Exception->getMessage();
|
|
}
|
|
?>
|