AvocadoAmber/AvocadoEdition_Light/bbs/scrap_delete.php

11 lines
267 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
include_once('./_common.php');
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);