Should I unescape some characters if using a tool like NicEdit for posts? How?
I'm planning on using nicEdit for posts to allow users to change the text font, weight, add a picture... But my question is, before using mysql_real_escape_string s开发者_如何学运维hould I unescape some characters? If so, how do I do that?
Try with: ... = stripslashes($_POST['foo']);
精彩评论