Hi,
I think you can store the path of name in a db.
Link the file as <a href="sendaudio.php?num=123">Smells like teen spirit</a>
Then do a php file like this:
//connection to db - $file is 123...
$query="select filename from <imagedb> where id=$file"
$result=mysql_query($query) or die ("Error: ".mysql_error());
$row=mysql_fetch_row($result);
header('Content-type: audio/x-pn-realaudio');
readfile($row[0]);
This thread maybe usefull
http://www.phpbuilder.com/board/showthread.php?s=&threadid=10263028
see you.
(If work you'll hear:
...
And I forget just why I taste
Oh yeah, I guess it makes me smile
I found it hard, it was hard to find
Oh well, whatever, nevermind
...) 🙂