I have a system that stores author name in one table:
author_id | author_name
1 | J.K.Rowling
2 | Ryan Quinn
3 | Stephen King
and another table that stores books and uses author_id from above:
book_id | book_name | book_desc | book_author
1 | Harry Potter | Boy who lived | 1
2 | End of secrets | Some desc | 2
3 | Harry Potter2 | Flying wands | 1
And so on.. So I need to make a search query so if I enter word Harry it would show all books that has "Harry" in it's title OR description or author's name has harry.
It's my first time making search in PHP. Thanks in advance