gpt4 book ai didi

php - 我如何添加一个页面指示符,如 "Question 1 of 10"?

转载 作者:行者123 更新时间:2023-11-29 03:15:25 25 4
gpt4 key购买 nike

我怎样才能将这样的东西添加到我的测验器中 page indicator我一直在搜索并尝试了几天,我无法弄清楚。

问题总数

<?php
//total question
$db = new db;
$link = $db->dbconnect();
$iauid = $_SESSION["uid"];
$qizid = $_SESSION["qizid"];
$qry = "SELECT COUNT qcatid FROM AS total FROM tbcat";
$result = mysqli_query($link, $qry) or die (mysqli_error($link));
$row = mysqli_fetch_array($result);
echo $row['total'];
?>
<label id="numberIndicator">1</label>
<?php

页面指示器

<script type="text/javascript">
//page indicator
function add() {
var quantity_temp = document.getElementById("numberIndicator").innerText;
var quantity_int = parseInt(quantity_temp, 10) + 1;
document.getElementById("numberIndicator").innerHTML = quantity_int.toString();
}
</script>

应该是这样

enter image description here

最佳答案

首先,您的查询看起来有误:

$qry = "SELECT COUNT qcatid FROM AS total FROM tbcat";

应该更像这样(因为 COUNT 是一个函数)

$qry = "SELECT COUNT(qcatid) total FROM tbcat";

好吧,从您发布的代码开始的最简单方法是这样的(在您的 PHP 中):

Question <label id="currentPageIndicator"><?=$currentPage?></label> of <label id="totalPageIndicator"><?=$row['total']?></label>

其中 $currentPage 将被分配默认值 1,并且将存储在 session 中,或者将通过从您的查询中获取数据或该方向的某些内容的当前行选择来计算。

关于php - 我如何添加一个页面指示符,如 "Question 1 of 10"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58910715/

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