I have build a small searchengine based on a mySQL database:
this is the searchstring:
<?PHP
require ("conf.php");
$server = mysql_connect($host,$user,$pass);
mysql_select_db($db,$server);
$query = "SELECT * FROM mp3
WHERE info LIKE '%songquery%' GROUP BY artist";
?>
In stead of searching through the column info, I want the string to search through the columns Artist and Song simultaniously.
Is this possible and if yes how??
thank you