beginTransaction(); $sql = "delete from chandj.memo_ripple where num = ?"; //db만 수정 $stmh = $pdo->prepare($sql); $stmh->bindValue(1,$num,PDO::PARAM_STR); $stmh->execute(); $pdo->commit(); header("Location:http://localhost/memo/memo.php"); } catch (Exception $ex) { $pdo->rollBack(); print "오류: ".$Exception->getMessage(); } ?>