I’ve been testing RedBeanPHP.
I’m wondering about sanitizing user input. Do I need to manually sanitize data or will RedBeanPHP take care of that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
RedBeanPHP uses PDO bindings to protect against SQL injection so you don’t need to escape manually. However input validation (checking whether the input is valid) should be done using your own models or validation routines.