따옴표 처리해서 DB저장 및 없애고 출력
로빈아빠
본문
- db입력시
$text = $_REQUEST['text'];
$text = addslashes($text);
insert into.......... values('$text');
- 페이지 출력시
echo(stripslashes($row[text]));
* addslashes(문자열) - 입력시 사용
* stripslashes(문자열) - 출력시 사용
관련링크
댓글목록
등록된 댓글이 없습니다.