- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 mysqli 和 php 制作的小程序,人们必须回答来自数据库表的问题。我在一个数据库中有两个表。一种是用于问题和答案,另一种是记录用户在表单中输入的内容(一旦有人点击“开始测验”,用户 ID 就会通过 auto_increment 生成)。
我一切正常,但唯一的问题是,一旦用户回答了问题,第一个表(有一个名为“已解决”tinyint(1) 的列)会根据该人是否解决了该问题从 0 更改为 1或不)更新所有用户的已解决列。
我想让它只针对特定的 id 进行更新,但我不知道该怎么做。这是我的 php 的以下代码。
<?php require("../require/exponents_database_connection.php"); ?>
<center><div style="overflow:hidden; border:solid; border-color:#39AEB9; display:inline-block; width: 500px; height:auto;">
<div style="vertical-align: middle; padding:25px;">
<?php
// 3. Use returned data
$exponents = "SELECT * FROM q_exponents WHERE solved = 0 ORDER BY id ASC LIMIT 1 ";
$result_exponents = mysqli_query($connection, $exponents);
$question = mysqli_fetch_assoc($result_exponents);
$getinfo = "SELECT * FROM q_exponents";
$result_getinfo = mysqli_query($connection, $getinfo);
$totsolved = "SELECT * FROM q_exponents WHERE solved=1";
$result_totsolved = mysqli_query($connection, $totsolved);
$totalsolved=mysqli_num_rows($result_totsolved);
$totalquestions=mysqli_num_rows($result_getinfo);
?>
<?php if(!isset($_POST['Submit']) || isset($_POST['Reset'])) { ?>
<div style="display: inline-block;">
<p><b> <?php echo "<p style='font-family:sans-serif;'>".$question["question"]."</p>"; ?> </b></p>
<?php $question_id = (int) $question['id']; ?>
<div style="float:left;">
<form action="" method="post">
<div>
<input type="radio" name="response" value="<?php echo $question["a1"]?>" checked><?php echo "<p style='display:inline; font-family:sans-serif;'>".$question["a1"]."</p>"?>
<input type="radio" name="response" value="<?php echo $question["a2"]?>" style="margin-left:50px;" ><?php echo "<p style='display:inline; font-family:sans-serif;'>".$question["a2"]."</p>"?>
<input type="radio" name="response" value="<?php echo $question["a3"]?>" style="margin-left:50px;" ><?php echo "<p style='display:inline; font-family:sans-serif;'>".$question["a3"]."</p>"?>
<input type="radio" name="response" value="<?php echo $question["a4"]?>" style="margin-left:50px;" ><?php echo "<p style='display:inline; font-family:sans-serif;'>".$question["a4"]."</p>"?>
<input type="hidden" name="question_id" value="<?php echo $question["id"] ?>" />
</div>
</div>
<div class="empty_block"> </div> <br/>
<br><input type="Submit" name="Submit" value="Submit" style="width:150px; height: auto;">
<div class="empty_block"> </div>
</form>
</div>
<?php } elseif(isset($_POST['Submit'])) { ?>
<?php
$previous_question_id = (int) $_POST['question_id']; //calls for previous id before randomising
$exponents = "SELECT * FROM q_exponents WHERE id = $previous_question_id";
$result_exponents=mysqli_query($connection, $exponents);
$question=mysqli_fetch_array($result_exponents); //fetches database randomised data where id = previous id
$response=$_POST['response'];
$a = "a".$previous_question_id;
$current_id=mysqli_query($connection, "SELECT AUTO_INCREMENT FROM information_schema.tables WHERE TABLE_SCHEMA = 'exponents' AND TABLE_NAME = 'a_exponents'")->fetch_object()->AUTO_INCREMENT;
$answers="UPDATE a_exponents SET $a = $response WHERE id = $current_id - 1";
$record_answer=mysqli_query($connection, $answers);
$check_answer = "SELECT * FROM a_exponents";
$result_check_answer = mysqli_query($connection, $check_answer);
$score_result = mysqli_fetch_assoc($result_check_answer);
$totsolved = "SELECT * FROM q_exponents WHERE solved=1";
$result_totsolved = mysqli_query($connection, $totsolved);
$totalsolved=mysqli_num_rows($result_totsolved); //counts how many we have solved
if($response == $question['correct']){
echo "<p style='font-family:sans-serif; color:#83E046;'><b>CORRECT</b></p>"; ?>
<p><b> <?php echo "<p style='display: inline; font-family:sans-serif;'>".$question["question"]."</p>";?>
<p style='display: inline; font-family:sans-serif;'>, x = </p>
<?php echo "<p style='display: inline; font-family:sans-serif;'>".$question["correct"]."</p>";?></b></p>
<?php
$solved = "UPDATE q_exponents SET solved = 1 WHERE id = $previous_question_id";
mysqli_query($connection, $solved); //updates database so that those with previous id are marked as solved
$totalsolved = $totalsolved + 1;?>
<?php
} else {
$solved = "UPDATE q_exponents SET solved =0 WHERE id=$previous_question_id";
mysqli_query($connection, $solved);
echo "<p style='font-family:sans-serif; color:#E04646;'><b>INCORRECT</b></p>"; ?>
<p style='display: inline; font-family: sans-serif;'>Your response was: </p>
<?php
echo $response;
?>
<p><b> <?php echo "<p style='display:inline; font-family:sans-serif;'>".$question["question"]."</p>";?>
<p style='display: inline; font-family:sans-serif;'>, x = </p>
<?php echo "<p style='display:inline; font-family:sans-serif;'>".$question["correct"]."</p>"; ?></b></p>
<?php }?>
<?php if($totalsolved==$totalquestions){?>
<br><form action="" method="post"><input type="submit" name="" value="One More Time" onclick="<?php $solved = "UPDATE q_exponents SET solved = 0"; mysqli_query($connection,$solved);?>"></form>
<?php } elseif ($response !== $question['correct']) { ?>
<br><form action="" method="get"><input type="submit" name="next" value="Try Again"/></form>
<?php } else { ?>
<br><form action="" method="get"><input type="submit" name="next" value="Next Question"/></form>
<?php }
} ?>
</div>
</div></center>
<?php
// 4. Release returned data
mysqli_free_result($result_exponents);
?>
<?php
require("../require/close_connection.php");
?>
<?php
// 2. Perform database query
//collects data from database by a resource
// Test if there was a query error
if (!$result_exponents) {
die("Database query failed.");
}
?>
这些是我的表格:1.问题表(q_exponents)
+----+-----------------------------------------------------------------------------------+-----+----+-----+-----------+---------+--------+
| id | question | a1 | a2 | a3 | a4 | correct | solved |
+----+-----------------------------------------------------------------------------------+-----+----+-----+-----------+---------+--------+
| 1 | 2<sup>4</sup> × 2<sup>3</sup> = 2<sup>x</sup> | 7 | 4 | 12 | 10 | 7 | 1 |
| 2 | 2<sup>6</sup> × 2<sup>x</sup> = 2<sup>8</sup> | 5 | 2 | 1.5 | 3 | 2 | 1 |
| 3 | <sup>2<sup>12</sup></sup> ⁄ <sub>2<sup>4</sup></sub> = 2<sup>x</sup> | 15 | 5 | 8 | 6 | 8 | 1 |
| 4 | <sup>2<sup>x</sup></sup> ⁄ <sub>2<sup>5</sup></sub> = 2<sup>3</sup> | 3 | 48 | 7 | 8 | 8 | 1 |
| 5 | 2<sup>x</sup> × 2<sup>2</sup> = 2<sup>5</sup> | 3 | 1 | 2.5 | 10 | 3 | 1 |
| 6 | 5<sup>x</sup> × 5<sup>7</sup> = 5<sup>25</sup> | 1 | 32 | 18 | 175 | 18 | 1 |
| 7 | <sup>103<sup>14</sup></sup> ⁄ <sub>103<sup>15</sup></sub> = 103<sup>x</sup> | -1 | 29 | 1 | No Answer | -1 | 0 |
| 8 | <sup>35<sup>17</sup></sup> ⁄ <sub>35<sup>x</sup></sub> = 35<sup>34</sup> | 41 | 2 | 0.5 | -17 | -17 | 0 |
| 9 | 103<sup>x</sup> × 103<sup>-1</sup> = 103<sup>89</sup> | 88 | 89 | 90 | 91 | 90 | 0 |
| 10 | 65<sup>-x</sup> × 65<sup>1</sup> = 65<sup>9</sup> | -10 | 10 | 8 | -8 | -8 | 0 |
| 11 | <sup>3<sup>3x</sup></sup> ⁄ <sub>3<sup>2x</sup></sub> = 3<sup>4</sup> | 2 | 3 | 4 | 5 | 4 | 0 |
| 12 | 4<sup>3x</sup> × 4<sup>2x</sup> = 4<sup>20</sup> | 2 | 3 | 4 | 5 | 4 | 0 |
+----+-----------------------------------------------------------------------------------+-----+----+-----+-----------+---------+--------+
最佳答案
您为答案表提供的链接已损坏。
你有用户表吗?您必须有一个。由于无法看到您的答案表是什么样子,我只能建议它看起来像这样:
+--------+-------------+----------------------------+
|user_id | question_id | answer |
+--------+-------------+----------------------------+
| 1 | 1 | their answer |
| 1 | 2 | their next answer |
+--------+-------------+----------------------------+
您还需要使用 session 处理(在用户回答问题时跟踪用户,但这超出了本文的范围。
关于php - 单个用户的更新数据库/所有用户的数据库更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42496694/
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!