Hi There,
I am using a site search but it will only search for php pages. I have both php and htm pages in the site and want it to search all pages. Here is the existing code;
//-------------------------------------------------------------------------
// if the file is a regular file - check it for the search text.
// Only check files with a .php extension
//-------------------------------------------------------------------------
if (is_file($s_dir.$file)) {
$file_ext = substr($file, strlen($file)-3, 3);
if ($file_ext == "php") search_file($s_dir.$file);
}
How would I get i tto search both????
Thanks!!