Ok, here is the code for a sample of JW.HTML... To make sure we are on the same page, please change the ? ? ? to the thumbnail location folder name and some JPG picture. (Doesn't matter of the picture...) And, let me know if this page works....
If this shows the videos correctly, then next we will change it to use the database version. Then, see why it is not pulling the correct data from the database. I am guessing it is a QUOTE issue.
Anyway, let's start with getting this page to work. Next, we will replace the playlist with the database version. Then, we can move on to the creation of the playlists...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<script type="text/javascript" src="mediaplayer_5-9/jwplayer.js"></script>
<div id="container">Loading the player...</div>
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "mediaplayer_5-9/player.swf",
playlist: [
{ duration: 32, file: "/Videos/Video1.flv", image: "/Thumbnails???/???.jpg", title: "Testing - Video 1", description: "Test Video1" },
{ duration: 124, file: "/Videos/Video2.flv", image: "/??????/???.jpg", title: "Testing - Video 2", description: "Test Video2" },
{ duration: 542, file: "/Videos/Video3.flv", image: "/???/???.jpg", title: "Testing - Video 3", description: "Video333333333" }
],
"playlist.position": "right",
"playlist.size": 360,
height: 270,
width: 720
});
</script>
<body>
</body>
</html>