这就是我使用 ajax 的方式
$.get('checkanswer.php',{'clickedvalue':clickedvalue,'qid':qid},function(data){
$this.find(".report").html(data);
这是我的 PHP 代码,数据来自哪里
<?php
$countresult=0;
$questionid=$_GET['qid'];
$answer=$_GET['clickedvalue'];
$dbconnect=mysqli_connect('localhost','root','','quiz')or die("Error Connecting to database");
$query="select answer from question_answer where id=$questionid";
$result=mysqli_query($dbconnect,$query);
while($rows=mysqli_fetch_array($result))
{
$dbanswer=$rows['answer'];
}
if($dbanswer==$answer)
{
echo "Correct";
$countresult=$countresult+1;
}
else{
echo "Incorrect";
$countresult=$countresult-1;
}
?>
现在以前我只是检查结果是否正确并显示结果,但现在我希望 PHP 页面甚至返回存储存储在 $countresult 中的计数的变量。我知道我必须使用 json 但如何在 PHP 页面中使用它,传递值并从另一个页面访问该值,