fix: PHP 파일 BOM 문자 제거 (15개 파일)
- free/delete.php
- notice/insert.php, write_form.php, delete_ripple.php, insert_ripple.php, view.php, delete.php
- notice1/insert.php, write_form.php, delete_ripple.php, list.php, insert_ripple.php, view.php, delete.php
- eworks/delete_ripple.php, insert_ripple.php
2025-12-11 10:38:06 +09:00
|
|
|
<?php
|
2025-12-10 20:14:31 +09:00
|
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . "/session.php");
|
|
|
|
|
|
|
|
|
|
$e_num=$_REQUEST["e_num"];
|
|
|
|
|
$page=$_REQUEST["page"];
|
|
|
|
|
$tablename=$_REQUEST["tablename"]; //tablename 이름
|
|
|
|
|
$ripple_content=$_REQUEST["ripple_content"];
|
|
|
|
|
|
|
|
|
|
require_once("../lib/mydb.php");
|
|
|
|
|
$pdo = db_connect();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try{
|
|
|
|
|
$pdo->beginTransaction();
|
|
|
|
|
$sql = "insert into " . $DB . ".eworks_ripple(parent, id, name, nick, content, regist_day) ";
|
|
|
|
|
$sql.= "values(?, ?, ?, ?, ?,now())";
|
|
|
|
|
$stmh = $pdo->prepare($sql);
|
|
|
|
|
$stmh->bindValue(1, $e_num, PDO::PARAM_STR);
|
|
|
|
|
$stmh->bindValue(2, $_SESSION["userid"], PDO::PARAM_STR);
|
|
|
|
|
$stmh->bindValue(3, $_SESSION["name"], PDO::PARAM_STR);
|
|
|
|
|
$stmh->bindValue(4, $_SESSION["nick"], PDO::PARAM_STR);
|
|
|
|
|
$stmh->bindValue(5, $ripple_content, PDO::PARAM_STR);
|
|
|
|
|
$stmh->execute();
|
|
|
|
|
$pdo->commit();
|
|
|
|
|
|
|
|
|
|
} catch (PDOException $Exception) {
|
|
|
|
|
$pdo->rollBack();
|
|
|
|
|
print "오류: ".$Exception->getMessage();
|
|
|
|
|
}
|
|
|
|
|
?>
|