php - SQL equivalent of mysqli_real_escape_string -


what equivalent of below in sql?

php function mysql:

mysqli_real_escape_string($post['password']); 

escaping done prepare sql statement correctly. there no equivalent in mysql because time hits layer should have been escaped in first place.

using mysqli_real_escape_string sign you're doing incorrectly should using bind_param method instead of kind of super low-level call.


Comments