I’m working on a homepage and will use an AJAX inline editing script for the admin to make it as simple as possible. The script I’ve been using is this and it has almost everything I wanted from an inline editing script. My problem arises when I’m going to capture the new changes and send them to a PHP function which will update my database with those new changes.
AJAX ve PHP ile çok deneyim birlikte yüzden biraz kayboldum ama ben buldum bir kod denedim yok:
$.ajax({
type: "POST",
url: "update_handler.php",
data: "newfieldvalue=" + newValue,
success: function(msg){
alert( "Data Saved: " + msg );
}
});
Sorun oldukça nasıl ve nerede bu kodu uygulamak veya eğer kullanmak için bile doğru kod bilmiyoruz olmasıdır. Size iki txt belgeleri ekledim kodunu göstermek için:
Ve
In index.php.txt
veritabanından benim veri alır ve jQuery kod biraz kullanır indeks sayfası. jQuery.editableText.js.txt
olarak beton jQuery kodudur. Ben PHP işleyicisi sayfa doğru alanını alarak ve daha sonra veritabanında güncelleme ile hemen hemen standart olduğunu tahmin.