Lets list them into database, (filename and folder names placed into two fields in the database)
and create a search form, with a passed $_POST["search_query"] value,
and search that from the database.
$word=mysql_real_escape_string($_POST["search_query"]);
$sql="SELECT * FROM images WHERE filename LIKE '%.$word.%'";
and the results make az img src with the folder name and image's name too.
try to start somewhere, and we could help.
LesSjo;10890278 wrote:I am looking for some samples of coding to create an image search that clients can use to narrow the results of the images we currently have on our site. Any ideas?