I have a webpage written in the latest version of PHP and need a little bit
of help with a rather pesky cache issue. Part of the source code is as
follows:
page.php
<?
echo "<meta http-equiv=pragma content=no-cache>";
echo "<meta http-equiv=expires content='-1'>";
.
.
.
echo "<embed src=filename.mp3 autostart=true>";
?>
The page does not cache (which is good), but the MP3 file does (which is
bad). Is there a way to NOT cache the MP3 file? I would like to keep the
file embedded within the page, if possible. Thanks!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php