我有办法在点击链接时将数据更新到mysql数据库吗?我想在我的网站上创建一个评论投票系统,这样当用户点击“投票给这个评论”链接时,+1应该被发送到数据库......
这怎么可能?
答案 0 :(得分:1)
<强> HTML 强>
<form method="post" action="/vote.php">
<input type="hidden" name="item" value="999">
<input type="submit" name="submit" value="Vote Up">
</form>
PHP - vote.php
<?php
if( !isset( $_POST['item'] ) ) {
header( 'HTTP/1.0 404 Not Found' );
die( '<html><body>Missing <i>item</i> parameter</body></html>' );
}
$item = (int) $_POST['item'];
if( @mysql_query( "UPDATE `items` SET `vote`=`vote`+1 WHERE `id`=$item" ) ) {
if( isset( $_POST['format'] ) && $_POST['format']=='json' )
die( json_encode( array( 'result'=>true ) ) );
die( '<html><body>Score for item #'.$item.' incremented</body></html>' );
}
header( 'HTTP/1.1 500 Internal Server Error' );
if( isset( $_POST['format'] ) && $_POST['format']=='json' )
die( json_encode( array( 'result'=>false ) ) );
die( '<html><body>Score for item #'.$item.' FAILED to incremented</body></html>' );
<强>的jQuery 强>
$( document ).ready( function() {
$( 'form[action="/vote.php"]' ).each( function() {
$( this ).replaceWith( '<span class="vote" parameter="item='+$( this ).find( 'input[name="item"]' ).attr( 'value' )+'">Vote Up</span>' );
} );
$( 'span[class="vote"]' ).click( function() {
var $this = $( this );
$.ajax( {
type : 'POST' ,
url : '/vote.php' ,
data : $( this ).attr( 'parameter' )+'&format=json' ,
dataType : 'json' ,
success : function( data , status , XHR ) {
if( data.result===true )
alert( 'Voted Up' );
else
alert( 'Something Unexpected Borked' );
} ,
error : function( XHR , status , error ) {
alert( 'Something Borked' );
}
} );
} );
} );
注意:这是一个未经测试的解决方案,但我认为这是开始调试和测试的起点。
更新:根据@Artefacto的建议将行为更改为POST。
答案 1 :(得分:0)
当然,创建一个PHP脚本来更新数据库,就像提交了常规表单一样,然后在单击链接时使用Javascript向该脚本发出请求。
答案 2 :(得分:0)
使用AJAX(使用一个可用的框架jQuery,mootools,Dojo,...):每当用户点击链接时,附加的动作就会被触发并执行“魔术”。
大多数情况下,这将向服务器发送带有注释ID和/或任何其他所需数据的AJAX请求,脚本将更新数据库。
您已经使用jQuery标记了问题,http://api.jquery.com/category/ajax/是一个很好的起点。
答案 3 :(得分:0)
在HTML中:
<a href="update.php?answer_id=1">vote</a>
在PHP中:
$Q = 'UPDATE `votes` SET `count` = `count` + 1 WHERE `answer_id` = ?';
$db_connection->prepare($Q);
$db_connection->bind_param('i', $_GET['answer_id']);
$db_connection->execute();
准备好后,使用AJAX进行操作,无需重新加载页面。将函数绑定到投票链接并以相同的方式将请求发送到网页,但是异步。
在jQuery中使用类似的东西:
$.get('update.php?id=1', function(data) {
alert('Thanks for voting');
});