Basically sanitization is used for escaping special characters while inserting into database.
function mysql_real_escape_string (str) { return str.replace(/[\0\x08\x09\x1a\n\r"'\\\%]/g, function (char) { switch (char) { case "\0": return "\\0"; case "\x08": return "\\b"; case "\x09": return "\\t"; case "\x1a": return "\\z"; case "\n": return "\\n"; case "\r": return "\\r"; case "\"": case "'": case "\\": case "%": return "\\"+char; // prepends a backslash to backslash, percent, // and double/single quotes } }); }
How to this function ?
var template = "<div> Hi Welcome to this example.</div>"; mysql_real_escape_string(template);
You might also like:
How to upload file by using request module18-03-2017 request module node js |
How to use request module in node js16-03-2017 request module node js |
Change datepicker display format06-03-2017 datepicker angular js |
How to find Angular Errors06-03-2017 errors angularjs exceptionHandler |
Call a function every second or 5 seconds in javascript22-02-2017 setinterval function calling |