sql injection 방지
본문
대부분 sql injection 막는 함수는 어떤걸. 쓰나요?
전 mysql 연결할때
$connect = mysql_connect("localhost","root","root");
mysql_select_db ("root", $connect);
를 써서 게시판을 만들고있는데 게시판에 취약점이 너무많은데
한번에 다 막을방법은없나요? 글쓸때 등등
!-->답변 1
http://php.net/manual/en/book.pdo.php
http://php.net/manual/en/book.mysqli.php
PDO랑 mysqli 알아 보세요.
어차피 mysql 관련 함수들은 php 5.5.0 버전부터는 사용 못합니다.
답변을 작성하시기 전에 로그인 해주세요.