forked from andreineculau/w2box
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflv.php
More file actions
executable file
·22 lines (22 loc) · 879 Bytes
/
Copy pathflv.php
File metadata and controls
executable file
·22 lines (22 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><?php echo basename($_REQUEST['file']); ?></title>
</head>
<body>
<div id="mvcontainer">
<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a>
to see this player.
</div>
<script type="text/javascript" src="https://media.dreamhost.com/mp4/swfobject.js">
</script>
<script type="text/javascript">
var s1 = new SWFObject("https://media.dreamhost.com/mp4/player.swf", "ply", "615", "480", "9", "#FFFFFF");
s1.addParam("allowfullscreen", "true");
s1.addParam("allowscriptaccess", "always");
s1.addParam("flashvars", "<?php echo $_SERVER['QUERY_STRING']; ?>");
s1.write("mvcontainer");
</script>
</body>
</html>