我收到未定义的索引通知,但不知道如何修复它。
Notice: Undefined index: id in /home/jharvard/vhosts/localhost/html/book_details.php on line 10
这是有问题的代码:
// query for the listing
$listing = query("SELECT name, author, id, edition, price, course, date FROM books WHERE submission = ?", $_GET["submission"]);
// query for the email of the seller
$seller = query("SELECT email FROM users WHERE id = ?", $listing["id"]);
任何人都可以帮忙吗?非常感谢。