Release data, title, artist and a few others...
The artist field contains the artist/performer name. I want to output a list of all artists starting with a specific letter.. That could be done running the query;
Code: Select all
SELECT *
FROM `cd`
WHERE `artist` LIKE 'b%'
ORDER BY `artist` ASC
LIMIT 0 , 100I have only written php for a week or so, and have allready written my own mini-"CMS" located at http://doffer.net/samler/. *proud newbie*