쿼리문에서 따옴표 제대로 제거되지 않는 오류 수정

This commit is contained in:
chicpro
2015-02-23 11:09:19 +09:00
parent 061c0f0c6e
commit feb06c3fde
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<?php
include_once('./_common.php');
$type = $_REQUEST['type'];
$type = preg_replace("/[\<\>\'\"\\\'\\\"\%\=\(\)\s]/", "", $_REQUEST['type']);
if ($type == 1) $g5['title'] = '히트상품';
else if ($type == 2) $g5['title'] = '추천상품';
else if ($type == 3) $g5['title'] = '최신상품';