Skip to content

Instantly share code, notes, and snippets.

@robbiet480
Forked from dennistang/FLV.php
Created January 24, 2011 07:52
Show Gist options
  • Select an option

  • Save robbiet480/792953 to your computer and use it in GitHub Desktop.

Select an option

Save robbiet480/792953 to your computer and use it in GitHub Desktop.
<?
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