Files
2026-06-11 18:47:38 +09:00

10 lines
210 B
PHP

<?php
include_once('./_common.php');
$id = $_GET['id'];
if (!$id) alert('잘못된 접근입니다.');
sql_query(" delete from {$g5['contact_inquiry_table']} where id = '{$id}' ");
goto_url('./list.php');
?>