I have this script, and I'm trying to get a MP3 file from a server and edit it the ID3 tag.
<?
header( "Content-type: audio/x-mpeg" );
header( "Content-Disposition: attachment; filename=$naam");
header( "Content-Description: PHP3 Generated Data" );
$fp = fopen("$url","r");
fpassthru($fp);
?>
So, I'd like to automaticaly edit the ID3 tag and continue downloading...
Can anyone help me with this?
(sorry for my bad English)