10 lines
210 B
PHP
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');
|
|
?>
|