-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (21 loc) · 808 Bytes
/
index.php
File metadata and controls
27 lines (21 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
require("shared/partials.php");
render_html_header("Behind Closed Doors - Trailer");
render_header();
?>
<!-- Insert your content here -->
<h2>Trailer</h2>
<div class="embedded_video">
<p id="player2"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var s2 = new SWFObject("flvplayer.swf","single","720","576","7");
s2.addParam("allowfullscreen","true");
s2.addVariable("file","http://www.si-entertainment.com/dahie/videos/BehindClosedDoors.flv");
s2.addVariable("displayheight","576");
s2.addVariable("backcolor","0x000000");
s2.addVariable("frontcolor","0xCCCCCC");
s2.addVariable("lightcolor","0x557722");
s2.write("player2");
</script>
</div>
<?php render_footer(); ?>