I need to do a search in my database for any keyword that is entered using PHP. So far what I have is this
$query="SELECT * FROM Guns WHERE brand LIKE '%$searchquery%'";
The problem with this is that I can only search in one field, in this instance the field "brand". I need a way to search multiple fields all at once. Any help?