I'm in the process of converting another script that uses PHP to access a mySQL database from a search script to a script that displays results by a specified letter (i.e. display all artists that beging with a, b, etc). Here's the search string that the script currently uses:
Code: Select all
if ($dvd_search != "") { $dvd_search_string = " WHERE ". $dvd_search_type . " like "%" . $dvd_search . "%""; }E