Matt Ridge Posted November 10, 2011 Share Posted November 10, 2011 II have been told that I should sanitize my inputs, what does that mean? Isn't that what trim does? Link to comment https://forums.phpfreaks.com/topic/250879-how-do-i-sanitize-my-inputs/ Share on other sites More sharing options...
cypher86 Posted November 10, 2011 Share Posted November 10, 2011 no trim delete the spaces at the beginning and at the end of a string. sanitize means have your string escaped from special characters. check this out: string addslashes ( string $str ) Link to comment https://forums.phpfreaks.com/topic/250879-how-do-i-sanitize-my-inputs/#findComment-1287094 Share on other sites More sharing options...
xyph Posted November 10, 2011 Share Posted November 10, 2011 Read the article in my signature, specifically about SQL injection. You need to apply similar when you output HTML to avoid XSS attacks. Link to comment https://forums.phpfreaks.com/topic/250879-how-do-i-sanitize-my-inputs/#findComment-1287096 Share on other sites More sharing options...
floridaflatlander Posted November 10, 2011 Share Posted November 10, 2011 Different things do different things strip_tags() removes things like <a>, </a>, <javascript> etc anything within tags <> htmlentities() changes things into their html entity like & changes into & int() makes sure everthing is a number mysqli_real_escape_string() is the cats meow and turns every thing into a string Link to comment https://forums.phpfreaks.com/topic/250879-how-do-i-sanitize-my-inputs/#findComment-1287125 Share on other sites More sharing options...
xyph Posted November 10, 2011 Share Posted November 10, 2011 Different things do different things strip_tags() removes things like <a>, </a>, <javascript> etc anything within tags <> htmlentities() changes things into their html entity like & changes into & int() makes sure everthing is a number mysqli_real_escape_string() is the cats meow and turns every thing into a string Disregard this post please. Link to comment https://forums.phpfreaks.com/topic/250879-how-do-i-sanitize-my-inputs/#findComment-1287135 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.