AvocadoAmber/AvocadoEdition_Light/bbs/scrap_delete.php

11 lines
266 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:07:19 +09:00
include_once "./_common.php";
2022-09-17 20:50:50 +09:00
if (!$is_member)
2024-09-19 20:57:39 +09:00
alert('회원만 이용하실 수 있습니다.');
2022-09-17 20:50:50 +09:00
$sql = " delete from {$g5['scrap_table']} where mb_id = '{$member['mb_id']}' and ms_id = '$ms_id' ";
sql_query($sql);
2024-09-19 20:57:39 +09:00
goto_url('./scrap.php?page=' . $page);