foreach($_GET as $k => $v ) ${$k} = htmlentities($v);
foreach($_POST as $k => $v ) ${$k} = htmlentities($v);
foreach($_REQUEST as $k => $v ) ${$k} = htmlentities($v);
위와 같이 값을 받았을 경우
<sc> => <sc> ( 실제 소스를 봤을 경우 이렇게 보입니다. )
foreach($_POST as $k => $v ) ${$k} = htmlentities($v);
foreach($_REQUEST as $k => $v ) ${$k} = htmlentities($v);
위와 같이 값을 받았을 경우
<sc> => <sc> ( 실제 소스를 봤을 경우 이렇게 보입니다. )