次のコードを使用して、サイトに音楽プレーヤーを追加します。
<div id="player" style="z-index:100;"></div><!--Player-->
<script language="javascript" type="text/javascript">
var so = new SWFObject("flashmp3player.swf", "player", "242", "150", "9"); // Location of swf file. You can change player width and height here (using pixels or percents).
so.addParam("quality", "high");
so.addParam("wmode", "opaque");
so.addVariable("content_path","<? echo $playerpath; ?>");
so.addVariable("color_path","default.xml");
so.addVariable("script_path","flashmp3player.php");
so.write("player");
</script>
$playerpath
フォルダー(例: 親フォルダー/子フォルダー)内の MP3 ファイルは、プレーヤーによって再生されます。しかし、訪問者に MP3 ファイルをダウンロードしてほしくありません。ただし、システムに Internet Download Manager がインストールされているユーザーには、各曲が再生されるたびに左下にアイコンが表示されます。アイコンをクリックするたびに、曲がダウンロードされます。これを防ぐ方法は?