#283 개인결제 기능 추가

This commit is contained in:
chicpro
2013-09-03 13:26:01 +09:00
parent d5288477be
commit 5027621753
27 changed files with 2881 additions and 8 deletions

View File

@ -0,0 +1,25 @@
<?php
$sub_menu = '400440';
include_once('./_common.php');
check_demo();
auth_check($auth[$sub_menu], 'd');
check_token();
$count = count($_POST['chk']);
if(!$count)
alert('선택삭제 하실 항목을 하나이상 선택해 주세요.');
for ($i=0; $i<$count; $i++)
{
// 실제 번호를 넘김
$k = $_POST['chk'][$i];
$sql = " delete from {$g4['shop_personalpay_table']} where pp_id = '{$_POST['pp_id'][$k]}' ";
sql_query($sql);
}
goto_url('./personalpaylist.php');
?>