If you need more flexibility in searches than Actinic provides, you are using Extended Info heavily, and you can get products into a database like MySQL, then this works:
Load the search data into a MySQL table - for example in the case of CDs, the title and artist. And enough data for you to know the link to the extended info page for each product...
Incorporate the search form you need into the Search Page Bulk Area (I decided to keep the Actinic search as well because this *does* search thoroughly). Your new search might allow either/or searches in different fields, wild cards etc...
In the action tag of the form, specify the path to the results page eg action="searchresults.php". This page takes the parameters from the search form, builds the SQL query and then returns the results. In this you will need to include a link to the extended info page for the product.
The downside is obviously the client has to have admin access to the product table - uploading the Actinic site from Catalog will not also change the MySQL product table.
Hope this helps...
Load the search data into a MySQL table - for example in the case of CDs, the title and artist. And enough data for you to know the link to the extended info page for each product...
Incorporate the search form you need into the Search Page Bulk Area (I decided to keep the Actinic search as well because this *does* search thoroughly). Your new search might allow either/or searches in different fields, wild cards etc...
In the action tag of the form, specify the path to the results page eg action="searchresults.php". This page takes the parameters from the search form, builds the SQL query and then returns the results. In this you will need to include a link to the extended info page for the product.
The downside is obviously the client has to have admin access to the product table - uploading the Actinic site from Catalog will not also change the MySQL product table.
Hope this helps...
Comment