更改数据库值

时间:2012-12-17 10:13:54

标签: php javascript html ajax

我想在我的数据库中更改一些值,按下我页面上的图片,使用javascript和AJAX。我该怎么办?

1 个答案:

答案 0 :(得分:0)

你可以使用xmlhttprequest和javascript:

var xhr = new XMLHttpRequest(); // Create new XHR
var url = 'http://sample.com/change.php'; // The url
var data = 'data=sample&back=come';
xhr.open('POST', url, true); // POST is method you can with `POST|GET`
xhr.send(data);

或者可以使用jquery

进行简化
var url = 'http://sample.com/change.php'; // The url
var data = 'data=sample&back=come';
$.post(url,data,function(callback){
  alert(callback);
});

并确保将其绑定在您的图片上:

$("img").click(function(){
    var url = 'http://sample.com/change.php'; // The url
    var data = 'data=sample&back=come';
    $.post(url,data,function(callback){
     alert(callback);
    });
});

然后是php文件:

<?php
$post_data = mysql_real_escape_string($_POST['data']);
$post_back = mysql_real_escape_string($_POST['back']);
$query = mysql_query("UPDATE table SET data = '".$post_data."' WHERE `back` = '".$post_back."'"); // This is a query, change it with yours
if($query){echo'Success';} //Print a success message
?>

结束,祝你好运