hello I know this is not an PHP question .. but I would like to know how to write a search engine SQL to search in my database for a certain string ..
I'm using MYSQL server
10x ..
Armando
here is a most general example for your SQL query that you can use in your PHP to retrieve the data:
SELECT * FROM myTable WHERE myRecord LIKE %$queryString%
i think there is a nice guide to this in the Columns section here on PHPBuilder