These kinds of things are quite easy to do yourself.
First write down all the info you want and then sort it logically into fieldnames and tables.
I would use 2 tables:
CD containing fields:
cd_id (unique id number)
artist
album
year_published
publisher
.......
TRACKS containing fields:
cd_id (refers to id in CD to say which cd the track is off)
trackname
tracklength
.....
An example of a cd with 12 tracks is 1 entry in CD, and 12 different entries in TRACKS with the same cd_id as the entry in CD.
Once you have this, its a simple matter of writing a few simple PHP pages to access/add/edit/delete this data.
Read a PHP/MySQL tutorial and you'll b fine.