gpt4 book ai didi

php - PHP 中的 Stack Overflow/reddit 投票系统

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:34:15 26 4
gpt4 key购买 nike

我正在寻找有关如何在 php 中实现 StackOverflow/reddit 投票系统的示例。

基本上我想要向上和向下箭头框。有什么好的例子吗?

最佳答案

有很多脚本out there但自己做并不难。

我以前使用过 jQuery(处理 AJAX)和一个小的 PHP 脚本。例如一些伪代码:

// Some checking for recent votes from this user is appropriate here
if (isset($_POST['voteType'], $_POST['postId']) && $user->loggedIn) {
// insert vote into database if not already inserted
echo json_encode(array('error' => false));
} else {
// bad request/hack attempt
echo json_encode(array('error' => true, 'message' => 'Bad parameters sent'));
}

然后是一些 jQuery:

$('#upVote').click(function() {
$.post('vote.php', {voteType: 'up', postId: 42}, 'updateIcon(data, textStatus)', 'json');
});

function updateIcon(data, textStatus) {
// If error = false highlight the upvote icon
// else show the error message returned
}

jQuery.post

关于php - PHP 中的 Stack Overflow/reddit 投票系统,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/490969/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com