Created
January 24, 2011 07:30
-
-
Save robbiet480/792937 to your computer and use it in GitHub Desktop.
A random flash player for dnn.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(isset($_REQUEST['file'])) { | |
echo '<html><head><title>'.$_REQUEST['file'].'</title></head><body style="background: #000;"><h1> | |
<object width="100%" height="100%"> | |
<param name="movie" value="swf/'.$_REQUEST['file'].'"> | |
<embed src="swf/'.$_REQUEST['file'].'" width="100%" height="100%"> | |
</embed> | |
</object> | |
</h1></body></html>'; | |
} else { | |
$dir=opendir("/path/to/your/flv/folder/"); | |
$i=0; | |
while($flvfile=readdir($dir)) | |
{ | |
if ($flvfile != "." && $flvfile!="..") | |
{ | |
$flvarray[$i]=$flvfile; | |
$i++; | |
} | |
} | |
closedir($dir); | |
$rand=rand(0,count($flvarray)-1); | |
if($rand >= 0) | |
{ | |
echo '<html><head><title>'.$flvarray[$rand].'</title></head><body style="background: #000;"><h1> | |
<object width="100%" height="100%"> | |
<param name="movie" value="swf/'.$flvarray[$rand].'"> | |
<embed src="swf/'.$flvarray[$rand].'" width="100%" height="100%"> | |
</embed> | |
</object> | |
</h1></body></html>'; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
'; } else { $dir=opendir("/var/www/swf"); $i=0; while($flvfile=readdir($dir)) { if ($flvfile != "." && $flvfile!="..") { $flvarray[$i]=$flvfile; $i++; } } closedir($dir); $rand=rand(0,count($flvarray)-1); ``` if($rand >= 0) { echo '<title>'.$flvarray[$rand].'</title> <script type="text/javascript" src="http://include.reinvigorate.net/re_.js"></script> <script type="text/javascript"> try { reinvigorate.track("ks74s-857rmjp5v4"); } catch(err) {} </script>
'; } ``` } ?>