I keep getting this error
Connection failed: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''book' where 'ISBN' = 1' at line 1
I've tried everything but I don't understand why it's not working
$sql = "select 'BookTitle' from 'book' where 'ISBN' = $ISBN";
$result = $conn->query($sql);
$booktitle = $result;
if ($conn->error) {
die("Connection failed: " . $conn->error);
}]