After a day of Googling, Searching forums, experimenting and reading the PHP Manual it is time to concede that I need help.
I am using Dreamweaver CS4 and it has produced the code below which will search on one field and produce the correct result. I would like to be able to search on all the fields in the table - please could someone guide me. Many thanks.
$query_Address = sprintf("SELECT Fname, Lname, House, Add1, Add2, Town, County, Pcode, Tel1, Tel2, Tel3, Comment FROM address WHERE Fname LIKE %1s ORDER BY Lname ASC", GetSQLValueString($colname_Address . "%", "text"));