[PHP] Uploading a file to a PHP script

Hi,
I have been working on a program that will output a file, output.db, with a large amount of information stored in a form like this:


'artist','album','format','quality',#oftracks,bitrate,seconds

'Stars','CBC Studio Session','MP3','-apfs',5,192,1202
'Stars','Heart','MP3','',11,246,2873
'Stars','Nightsongs','MP3','-aps',14,178,3136
'Stars','Set Yourself On Fire','MP3','-aps',13,207,3187

This file is uploaded from inside the program to a PHP file using POST.
Here’s the issue: I need the PHP file to take this data being posted to it and insert it into a MySQL table. I’ve tried some other scripts I’ve found online and they all involved uploading a file and the user interacting with the script, I just want it to be POSTed to the file and it be inserted to the database. Security isn’t really an issue at this point. Any help and advice on any aspect of this would be greatly appreciated.