0

I tried to run the following code but it gets this error:

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'ani123' in 'where clause'' in D:\xampp\htdocs\New folder\FINAL PROJECT\QQUIZ\admin\teacher\t_action.php:44 Stack trace: #0 D:\xampp\htdocs\New folder\FINAL PROJECT\QQUIZ\admin\teacher\t_action.php(44): PDO->exec('DELETE FROM `qu...') #1 {main} thrown in D:\xampp\htdocs\New folder\FINAL PROJECT\QQUIZ\admin\teacher\t_action.php on line 44

Here is my code:

$dltQuizesSql = "DELETE FROM `quizes` WHERE `username`=".$_GET['user']; // line 44
$stmt1 = $conn->exec($dltQuizesSql);

And here is an image of my table:

username exists in my table but I still get the error.

How can I solve it?

Pang
  • 9,564
  • 146
  • 81
  • 122
Animesh
  • 417
  • 2
  • 5
  • 14

1 Answers1

1

1) string should be enclosed by single quotes

 "DELETE FROM quizes WHERE username='".$_GET['user']."'"; 

2) Remove semicolon inside the brackets

( $stmt1 = $conn->exec($dltQuizesSql);)
JYoThI
  • 11,977
  • 1
  • 11
  • 26