beginTransaction(); $sql = "insert into chandj.work_ripple(parent, id, name, nick, 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, $_SESSION["nick"], PDO::PARAM_STR); $stmh->bindValue(5, $ripple_content, PDO::PARAM_STR); $stmh->execute(); $pdo->commit(); header("Location:/as/view.php?num=$num&page=$page"); } catch (PDOException $Exception) { $pdo->rollBack(); print "오류: ".$Exception->getMessage(); } ?>