Hi ALL
I want to create a feature to search a PHP based web site. MySQL is the database arse-end.
Can anyone help on what would be the best method to implement a search engine using PHP for my site.
Thanx
umberto
Are you searching content in the database, or also within the html of the pages as well?
I am new to PHP, but found that all data that I was searching was contained within mySQL db, I am using the built in select function of mySQL:
select " * from $tbl_name where $tbl_field like (\%$kywd%\") ";
the % acts as a wildcard in mySQL
Hi John
Ideally both. Any ideas?