Listing Items by Category in PHP
问题 Can someone help me with listing items by category in PHP? I'm trying to create a simple list of books by category: JavaScript JavaScript Patterns Object-Oriented JavaScript Ajax Ajax Definitive Guide Bulletproof Ajax jQuery jQuery Cookbook Learning jQuery 1.3 I have no problems with the data structure or SQL query: BOOK: book_id, book_title, fk_category_id CATEGORY: category_id, category_name SELECT category.category_name, book.book_title FROM category LEFT OUTER JOIN book ON category