Skip to content

Instantly share code, notes, and snippets.

@dennistang
Forked from robbiet480/FLV.php
Created January 24, 2011 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dennistang/792950 to your computer and use it in GitHub Desktop.
Save dennistang/792950 to your computer and use it in GitHub Desktop.
<?php
if(isset($_REQUEST['file'])) {
echo '<html><head><title>'.$_REQUEST['file'].'</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>
</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("/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 '<html><head><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>
</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