묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
도와주세요~도와주세요~도와주세요~
2003.07.05 15:53
소스설명 : 아래소스는 게시물의 첨부파일 다운로드시 포인트를 삭감하는 소슨데요.
게시판id가 download일 경우 포인트($downp값)을 회원포인트에서 삭감하도록 설정했습니다. (이 상태로는 작동을 잘되는데, 포인트삭감 경고창이 없어서 불편하더군요)
그리고 코드 하단에 id가 download이 외에는 그냥 무료로 다운로드 되는거구요.
포인트값이 모자르면 경고창이 뜨게 했습니다.
포인트가 $downp값 이상을 소지하고있을경우 다운로드와함께 $downp값이 삭감되구요.
이부분에 (다운로드 &포인트 삭감단계)
header("location:$data[$filename]");
mysql_query("update member_table set point=point-$downp where no='$member[no]'");
앞에 확인을 누르면 다운로드가 진행되겠습니다라는 경고창을 넣고싶구요.
다운로드 후에는 새로고침이 한번 됬으면 좋겠는데요. 방법 부탁드립니다.
게시판내용,자료첨부로드
.
.
생략
if($id=="download") {
$downp = "10";
if($member[point] < $downp) {
echo "<script>
alert('".($downp-$member[point])."포인트가 모자랍니다.');
history.go(-1);
</script>";
} else {
header("location:$data[$filename]");
mysql_query("update member_table set point=point-$downp where no='+ '+ '$member[no]'");
}
} elseif($id!="download") {
header("location:$data[$filename]");
}
if($connect) {
@mysql_close($connect);
unset($connect);
}
?>
게시판id가 download일 경우 포인트($downp값)을 회원포인트에서 삭감하도록 설정했습니다. (이 상태로는 작동을 잘되는데, 포인트삭감 경고창이 없어서 불편하더군요)
그리고 코드 하단에 id가 download이 외에는 그냥 무료로 다운로드 되는거구요.
포인트값이 모자르면 경고창이 뜨게 했습니다.
포인트가 $downp값 이상을 소지하고있을경우 다운로드와함께 $downp값이 삭감되구요.
이부분에 (다운로드 &포인트 삭감단계)
header("location:$data[$filename]");
mysql_query("update member_table set point=point-$downp where no='$member[no]'");
앞에 확인을 누르면 다운로드가 진행되겠습니다라는 경고창을 넣고싶구요.
다운로드 후에는 새로고침이 한번 됬으면 좋겠는데요. 방법 부탁드립니다.
게시판내용,자료첨부로드
.
.
생략
if($id=="download") {
$downp = "10";
if($member[point] < $downp) {
echo "<script>
alert('".($downp-$member[point])."포인트가 모자랍니다.');
history.go(-1);
</script>";
} else {
header("location:$data[$filename]");
mysql_query("update member_table set point=point-$downp where no='+ '+ '$member[no]'");
}
} elseif($id!="download") {
header("location:$data[$filename]");
}
if($connect) {
@mysql_close($connect);
unset($connect);
}
?>