thePhpLady Posted February 18, 2012 Share Posted February 18, 2012 Hi everyone! I have a question that might sound silly... I have stored in my database a url to a pic and some other data. I am unsure if when I retreive data from my database I need some sort of protection. I usually sanitize and prevent SQl injections when I code forms but I am not sure if I have to do the same when I get data from the database. Thanks for your help. Veronica Quote Link to comment https://forums.phpfreaks.com/topic/257260-php-security-question/ Share on other sites More sharing options...
requinix Posted February 18, 2012 Share Posted February 18, 2012 In terms of SQL injection, no there isn't anything you need to do once something in the database. There's still XSS injection to think about though. Verify the data is what you expect it to be before inserting it into the database, and use htmlentities() when echoing it out into your HTML. I usually sanitize and prevent SQl injections when I code forms "Usually" isn't enough. Quote Link to comment https://forums.phpfreaks.com/topic/257260-php-security-question/#findComment-1318676 Share on other sites More sharing options...
thePhpLady Posted February 18, 2012 Author Share Posted February 18, 2012 Thank you, I will use it! And...as you say, usually it is not enough to protect from SQL injections! Thanks again Quote Link to comment https://forums.phpfreaks.com/topic/257260-php-security-question/#findComment-1318680 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.