I'm sending a query to mySQL. It looks like this:
$result = mysql_query("SELECT * FROM products WHERE verksamhet LIKE '$motivkategori1' OR grupportratt LIKE '$motivkategori2' OR landskap LIKE '$motivkategori3' OR foremal LIKE '$motivkategori4' OR portratt LIKE '$motivkategori5' OR stadsvy LIKE '$motivkategori6' OR byggnad LIKE '$motivkategori7'");
That gives me the right rows. No problem so far.
But I want to extend this so I only get the rows for a certain artist. Where do I put the $artist string in my query to do that?