|
-
Hi,
the server idea as a php script (you can do the same thing with cgi, asp, coldfousion...)
Replace loadvariables('info.txt', ...) by loadvariables('info.php', ...)
with info.php script
<?
header('Cache-control: no-cache');
header('Pragma: no-cache');
header('Expires: Jan 01 2000 00:00 GMT');
$fp = fopen('info.txt', 'r');
fpassthru($fp);
?>
In case you want to do the same for the swf file, you should add a
header('Content-type: application/x-shockwave-flash');
Musicman
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|