afraundtim
Neues Mitglied
Hallo!
Das Script soll den verzeichnisinhalt auflisten und mit Media Player weidergeben-aber das funktioniert nicht....
<?php
$pfad = "music_upload/music/";
$ausnahme = "Thumbs.db";
$ausgabe = @opendir($pfad) or die("$pfad konnte nicht gefunden werden");
while ($datei = readdir($ausgabe))
{
if(($datei!="Thumbs.db") and ($datei!="Thumbs.db") and ($datei!=$ausnahme ))
{
echo "<OBJECT ID="MediaPlayer" width=276 height=45 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Micrwosoft Windows Media Player components..." type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="music_upload/music/ $datei \">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="false">
<PARAM NAME="showControls" VALUE="true">
<EMBED type="application/x-mplayer2" pluginspage ="http://www.microsoft.com/Windows/MediaPlayer/" name="MediaPlayer" width=276 height=45 AutoStart=false> </EMBED>
</OBJECT>
";
}
}
closedir($ausgabe);
?>
MfG
Alex
Das Script soll den verzeichnisinhalt auflisten und mit Media Player weidergeben-aber das funktioniert nicht....
<?php
$pfad = "music_upload/music/";
$ausnahme = "Thumbs.db";
$ausgabe = @opendir($pfad) or die("$pfad konnte nicht gefunden werden");
while ($datei = readdir($ausgabe))
{
if(($datei!="Thumbs.db") and ($datei!="Thumbs.db") and ($datei!=$ausnahme ))
{
echo "<OBJECT ID="MediaPlayer" width=276 height=45 classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Micrwosoft Windows Media Player components..." type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="music_upload/music/ $datei \">
<PARAM NAME="animationatStart" VALUE="true">
<PARAM NAME="transparentatStart" VALUE="true">
<PARAM NAME="autoStart" VALUE="false">
<PARAM NAME="showControls" VALUE="true">
<EMBED type="application/x-mplayer2" pluginspage ="http://www.microsoft.com/Windows/MediaPlayer/" name="MediaPlayer" width=276 height=45 AutoStart=false> </EMBED>
</OBJECT>
";
}
}
closedir($ausgabe);
?>
MfG
Alex