$.ajax({
method: "post"
, url: "save.php"
, data: "id=453&action=test"
, beforeSend: function(){
}
, complete: function(){
}
, success: function(html){
$("#mydiv").append(html);
}
});
Ben yazı olarak yöntem türü ayarlayın ama Save.php ben sadece değerleri $ _POST in $ _GET veya $ _REQUEST ama değil ya olsun.
Benim formu gibi görünüyor
<form method="post" id="myform" action="save.php">
Bu çalışma değildi, burada etrafına baktı ve Google, EncType ekleme çalıştı
<form method="post" id="myform" action="save.php" enctype="application/x-www-form-urlencoded">
ama yine de $ _POST boş?
Nasıl bu çalışma yapabilirim? Teşekkürler.