Forum Moderators: coopster
Then, with the .csv file on your server, a search script would be simple.
As an example, suppose you just wanted the rows matching a certain artist. Create a form, and retrieve the variable $artist from your user.
Then, use fopen() to open the .csv file, and navigate the file using fgetcsv() [uk.php.net]. Use the example on that fgetcsv() to loop through each row of the file.
fgetcsv() returns an array for each line. Within each iteration of the loop compare $artist with the array entry corresponding to the artist column. If there is a match, output the results however you wish.
Sorry that's not a complete solution for you; but it should point you in the right direction.