I got this...
$result = mysql_query("SELECT * FROM qst_logbook WHERE $search_where LIKE '%$search_keyword%' ORDER BY `log_id` ASC",$db) or die("Error Executing Query");
works nicely for searching a field which i know. But i want $search_where to also have the option of 'Anywhere' so the db looks in all fields of the row to try and find what is specified...
how would i do that?
i thort maybe:
$result = mysql_query("SELECT * FROM qst_logbook WHERE %% LIKE '%$search_keyword%' ORDER BY `log_id` ASC",$db) or die("Error Executing Query");