Link to home
Start Free TrialLog in
Avatar of hankknight
hankknightFlag for Canada

asked on

Do I need to serialize or sanitize data sent using jQuery's post function?

Do I need to serialize or sanitize data sent using jQuery's post function?

var name = "abc "xyz"? 1&2&3,555";
var contact = "abc "xyz"? 1&2&3,555";

 $.post('save.php', { filename: name, content: html },
  function(data) {
    alert(data);
  }, 
  'text'
 );

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Lalit Chandra
Lalit Chandra
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial