22 lines
660 B
PHP
22 lines
660 B
PHP
|
|
<?php
|
||
|
|
$num=$_REQUEST["num"];
|
||
|
|
$page=$_REQUEST["page"];
|
||
|
|
$ripple_num=$_REQUEST["ripple_num"];
|
||
|
|
require_once("../lib/mydb.php");
|
||
|
|
$pdo = db_connect();
|
||
|
|
|
||
|
|
try{
|
||
|
|
$pdo->beginTransaction();
|
||
|
|
$sql = "delete from chandj.work_ripple where num = ?"; //db만 수정
|
||
|
|
$stmh = $pdo->prepare($sql);
|
||
|
|
$stmh->bindValue(1,$ripple_num,PDO::PARAM_STR);
|
||
|
|
$stmh->execute();
|
||
|
|
$pdo->commit();
|
||
|
|
|
||
|
|
header("Location:/as/view.php?num=$num&page=$page");
|
||
|
|
} catch (Exception $ex) {
|
||
|
|
$pdo->rollBack();
|
||
|
|
print "오류: ".$Exception->getMessage();
|
||
|
|
}
|
||
|
|
?>
|