1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>
Mon lecteur Mp3 exportable en flash !
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<object type="application/x-shockwave-flash" data="dewplayer-bubble.swf" width="250" height="65" id="dewplayer" name="dewplayer">
<param name="wmode" value="transparent" />
<param name="movie" value="http://monsite/Lecteur/dewplayer-bubble.swf" />
<param name="flashvars" value="mp3= "/>
echo '<embed src="dewplayer-bubble.swf" width="250" height="65" wmode="transparent" flashvars="mp3=' . $_GET['mp3'] . '.mp3"></embed>';
</object>
<p>
<a href="lecteur.php?mp3=http://monsite/player/mp3/musique1.mp3">musique1</a>
<p>
<a href="lecteur.php?mp3=http://monsite/player/mp3/musique2">musique2.mp3</a>
</p>
</p>
</body>
</html> |