fix: PHP 파일 BOM 문자 제거 (15개 파일)
- 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
2025-12-11 10:38:06 +09:00
|
|
|
<?php
|
2025-12-10 20:14:31 +09:00
|
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . "/session.php");
|
|
|
|
|
|
|
|
|
|
$ripple_num=$_REQUEST["ripple_num"];
|
|
|
|
|
$tablename=$_REQUEST["tablename"]; //tablename 이름
|
|
|
|
|
|
|
|
|
|
require_once("../lib/mydb.php");
|
|
|
|
|
$pdo = db_connect();
|
|
|
|
|
|
|
|
|
|
try{
|
|
|
|
|
$pdo->beginTransaction();
|
|
|
|
|
$sql = "delete from $DB.eworks_ripple where num = ?"; //db만 수정
|
|
|
|
|
$stmh = $pdo->prepare($sql);
|
|
|
|
|
$stmh->bindValue(1,$ripple_num,PDO::PARAM_STR);
|
|
|
|
|
$stmh->execute();
|
|
|
|
|
$pdo->commit();
|
|
|
|
|
|
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
|
$pdo->rollBack();
|
|
|
|
|
print "오류: ".$Exception->getMessage();
|
|
|
|
|
}
|
|
|
|
|
?>
|