Files
firstgarden-web-gnu/mobile/shop/itemuseform.php
2013-09-24 16:01:24 +09:00

36 lines
984 B
PHP

<?php
include_once('./_common.php');
include_once(G5_EDITOR_LIB);
if (!$is_member) {
alert_close("사용후기는 회원만 작성 가능합니다.");
}
if ($w == "") {
$is_score = 10;
} else if ($w == "u") {
$use = sql_fetch(" select * from {$g5['g5_shop_item_use_table']} where is_id = '$is_id' ");
if (!$use) {
alert_close("사용후기 정보가 없습니다.");
}
$it_id = $use['it_id'];
$is_score = $use['is_score'];
if (!$is_admin && $use['mb_id'] != $member['mb_id']) {
alert_close("자신의 사용후기만 수정이 가능합니다.");
}
}
include_once(G5_PATH.'/head.sub.php');
$itemuseform_skin = G5_MSHOP_SKIN_PATH.'/itemuseform.skin.php';
if(!file_exists($itemuseform_skin)) {
echo str_replace(G5_PATH.'/', '', $itemuseform_skin).' 스킨 파일이 존재하지 않습니다.';
} else {
include_once($itemuseform_skin);
}
include_once(G5_PATH.'/tail.sub.php');
?>