인기검색어 특수문자
관련링크
본문
특수문자가 나오는데 않나오게 할수 있는 스킨이나 스킨을 어떻게 수정하나요.
특정 ip에서 오는것 등
zbasic
popular.skin.php
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<table>
<tr>
<td width="80"><font color=#E50011><b><strong>인기검색어</strong> : </b></font></td>
<? for ($i=0; $i<count($list); $i++) { ?>
<td>
<table>
<tr>
<td>
<?
echo "<a href='$g4[bbs_path]/search.php?sfl=wr_subject&sop=and&stx=".urlencode($list[$i][pp_word])."'><font color=#FEFEFE>{$list[$i][pp_word]}</a></font>";
?>
</td></tr>
</table></td>
<? if ($i+1 < count($list)) { //마지막 라인 생략?><td><font color=#FEFEFE>,</font></td><? } ?>
<? } ?>
</tr>
</table>
답변 1
* preg_replace("/[^A-Za-z0-9가-힣]/i","",$temp);
* preg_replace("/[ #\&\+\-%@=\/\\\:;,\.'\"\^`~\_|\!\?\*$#<>()\[\]\{\}]/i", "", $temp);
특수문자 제거코드입니다