/    Sign up×
Community /Pin to ProfileBookmark

[RESOLVED] Not Working in IE

Hi, guys!

This code works fine in Firefox but not in IE, please help.

[code=php]<html>
<head>
<script src=”jplayer.js” type=”text/javascript”></script>
<script language=”javascript”>
myfiles = new Array();
<?PHP
$files = GLOB(‘e:/*.*[3]’,GLOB_NOSORT);
foreach ($files as $value)
{
print “myfiles.push(“$value”);”;
}
?>
</script>

</head>
<body>

<table border=”1″ cellspacing=”0″ width=”100%” bordercolor=”#008000″ id=”table1″>
<script language=”javascript”>
for (x in myfiles)
{
filetxt=myfiles[x];
document.write (“<tr>”);
document.write(“<td>”);
document.write(myfiles[x]);
document.write(“</td>”);

document.write(“<td>”);
document.write(“<center><input type=’image’ border=’0′ id=’play’ value='”+myfiles[x]+”‘ src=’play.jpeg’ width=’34’ height=’34’ onclick=’embedPlayer(this.value)’></center>”);
document.write(“</td>”);

document.write(“<td>”);
document.write(“<center><input type=’image’ src=’save.jpeg’ width=’34’ height=’34’ onclick=playthis(x)></center>”);
document.write(“</td>”);

document.write(“</tr>”);
}
</script>
</table>

</body>
</html>[/code]

[CODE]// Batmosphere Embedded Media Player, version 2006-05-31
// Written by David Battino, www.batmosphere.com
// OK to use if this notice is included

// This function reads an MP3 URL and title from the referring page and generates embedding code to play back the audio file.
// Windows browsers (except for Internet Explorer) will play back the file with the Windows Media Player *plugin.* Internet Explorer will use Windows Media Player.
// Non-Windows browsers will play back the file with their standard audio handler for the MIME type audio/mpeg. On Macs, that handler will usually be QuickTime.

var audioFolder = “”; // If you have a default audio directory, e.g., http://www.your-media-hosting-site.com/sounds/, you can put it here to make links on the referring page shorter.

function embedPlayer(MP3URL) {

// Get Operating System
var isWin = navigator.userAgent.toLowerCase().indexOf(“windows”) != -1
if (isWin) { // Use MIME type application/x-mplayer2
visitorOS=”Windows”;
} else { // Use MIME type audio/mpeg, audio/x-wav, etc.
visitorOS=”Other”;
}

var audioURL = audioFolder + MP3URL;

var objTypeTag = “application/x-mplayer2”; // The MIME type to load the WMP plugin in non-IE browsers on Windows
if (visitorOS != “Windows”) { objTypeTag = “audio/mpeg”}; // The MIME type for Macs and Linux

document.writeln(“<div>”);
document.writeln(“<object width=’280′ height=’69’>”); // Width is the WMP minimum. Height = 45(WMP controls) + 24 (WMP status bar)
document.writeln(“<param name=’type’ value='” + objTypeTag + “‘>”);
document.writeln(“<param name=’src’ value='” + audioURL + “‘>”);
document.writeln(“<param name=’autostart’ value=’1′>”);
document.writeln(“<param name=’showcontrols’ value=’1′>”);
document.writeln(“<param name=’showstatusbar’ value=’1′>”);
document.writeln(“<embed src ='” + audioURL + “‘ type='” + objTypeTag + “‘ autoplay=’true’ autostart=’1′ width=’280′ height=’69’ controller=’1′ showstatusbar=’1′ bgcolor=’#ffffff’></embed>”); // Firefox and Opera Win require both autostart and autoplay
document.writeln(“</object>”);
document.writeln(“</div>”);
document.close(); // Finalizes the document
}[/CODE]

I will be really thankful.

[upl-file uuid=64c8e64b-d623-46f8-a79a-d6ef95320304 size=2kB]test.zip[/upl-file]

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@nyt1972authorMay 08.2009 — I fixed my problem

replaced:

<code>$files = GLOB('e:/*.*[3]',GLOB_NOSORT);</code>

with this

<code>$files = GLOB('*.*[3]',GLOB_NOSORT);</code>
×

Success!

Help @nyt1972 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...