Posted by Brian Huether on 12/02/06 12:24
This relates to my previous posts about protecting mp3 files.
I have forgotten a lot of my
PHP knowledge. For istance, say I have a file called audio.php that contains
<?php
function ServeAudio($file) {
echo $file;
//header("Location: " .$file);
}
?>
To test it, I have a file called audiotest.php that contains
<body>
<a href = "audio.php?op=ServeAudio&file =
<?php
echo "http://blah.mp3";
?>">file</a>
</body>
But I can not get it to successfully enter the ServeAudio function.
thanks,
brian
Navigation:
[Reply to this message]
|