ben php ile jquery ajax ile veri ilanıyla ama giriş varsa '
içinde, veri alışkanlık gönderilebilir. I encodeURIComponent
ama alışkanlık işi çalıştı.
Bu konuda herhangi bir fikir?
teşekkürler
EDIT: my code
var name = $("input#name_add").val();
name = encodeURIComponent(name);
$.post("function.php", { name: name }, function(data) {
//codes
});
$query = "UPDATE `table` SET name = '" . stripslashes($_POST['name']) . "' WHERE ID = '$id'";
$result = mysql_query($query);
if ($result){
print "ok";
}