Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>example</title>
- <style>
- .clip{
- border:2px solid rgb(204,204,204);
- width:500px;
- height:350px;
- margin-bottom:10px;
- }
- </style>
- </head>
- <body>
- <div class="content">
- <?php
- $vlist=array();
- //assume there is a folder named videos and it contains all the videos
- foreach (glob("./videos/*") as $filename) {
- $vlist[]=$filename;
- }
- //sort videos
- sort($vlist);
- //inject video to html content
- foreach($vlist as $vid) {;
- echo "<div class='clip'><video width='500' height='350' controls><source src='{$vid}' type='video/mp4'></video> </div>";
- }
- ?>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment