Forum Moderators: mack
Thanks for your help
S
If youre thinking about taking your data to the web then mysql may be the database server of choice. You can use a scripting language of your choice to insert, edit, deleta or search within records.
On your own system you may want to go with msql server from Microsoft.
If you can give us a little bit more info about what you are trying to set up we shoudl be able to help you more.
Mack.
In your case I would be tempted to use the php scripting language and mysql database for storing your data. The different data sections could be stored in mysql tables within your main database. You would end up with tables for category, artist label etc.
You can then use an html form to allow your users to query the database. The great thing about setting up a browsable mysql database its you can allow your users to view by different criteria.. for example order by artist or label.. or only show this artist on this label etc... or show all by an artist.
It all comes down to using "mysql select" within your php code.
Mack.