在下面给出的代码中,每次单击按钮时都会调用get.php?id = inc使用Ajax。 我希望每当这个get.php被调用时,选择查询获取表中的下一条记录。
JavaScript文件:
xmlhttp.open("GET","get.php?id=inc",true);
xmlhttp.send();
get.php文件:
<?php
if(isset($_GET['nextq'])){ //nextq the name of button
$idd= $_GET['id'];
include 'library/php/connect.php';
$q = "SELECT * from hp_questions where id=$idd";
$q = mysqli_query($conn, $q);
while ($row = mysqli_fetch_array($q)){
echo
$row['question'];
}
?>