我真的不知道这里发生了什么,
这是我使用的要求studentcode=lz的表单。

  <form action="classgrades.php?id=<?php echo $courseid ?>" method="post">
       <input type="text" name="studentCode" value="" placeholder="Student Code.." />
       <button type="submit" value="Submit">Submit</button>
  </form>

以及从表中选择数据的查询
$studentcode = $_POST['studentCode'];
 $query = "SELECT fname FROM students WHERE studentcode = $studentcode";

我不知道我犯了什么错误
ErrorSQLSTATE[42S22]: Column not found: 1054 Unknown column 'lz' in 'where clause'

如果我试着用一个学生代码,这是一个数字工作,但不是字母

最佳答案

如果要将字符作为值,则必须将其括在引号中。试一试

$query = "SELECT fname FROM students WHERE studentcode = '$studentcode'";

关于php - 查询无法正常使用PHP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23842580/

10-10 17:14