- 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
29 lines
998 B
PHP
29 lines
998 B
PHP
<?php
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . "/session.php");
|
|
|
|
$num=$_REQUEST["num"];
|
|
$tablename=$_REQUEST["tablename"]; //tablename 이름
|
|
$ripple_content=$_REQUEST["ripple_content"];
|
|
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . "/lib/mydb.php");
|
|
$pdo = db_connect();
|
|
|
|
try{
|
|
$pdo->beginTransaction();
|
|
$sql = "insert into {$DB}.{$tablename}_ripple (parent, id, name, content, regist_day) ";
|
|
$sql.= "values(?, ?, ?, ?,now())";
|
|
$stmh = $pdo->prepare($sql);
|
|
$stmh->bindValue(1, $num, PDO::PARAM_STR);
|
|
$stmh->bindValue(2, $_SESSION["userid"], PDO::PARAM_STR);
|
|
$stmh->bindValue(3, $_SESSION["name"], PDO::PARAM_STR);
|
|
$stmh->bindValue(4, $ripple_content, PDO::PARAM_STR);
|
|
$stmh->execute();
|
|
$pdo->commit();
|
|
|
|
header("Location:" . $WebSite . "{$tablename}/view.php?tablename=$tablename&num=$num");
|
|
} catch (PDOException $Exception) {
|
|
$pdo->rollBack();
|
|
print "오류: ".$Exception->getMessage();
|
|
}
|
|
?>
|