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(); } ?>