Hello frnds,
I want to echo an swf file to the browser screen, just as if i was clicking an swf file directly.
I tried the following:
<?php
$file = "mediaplayer.swf";
$handle = fopen($file,"rb");
$ret = fread($handle, filesize($file));
fclose($handle);
echo($ret);
?>
but I get...