Created
June 16, 2017 18:55
-
-
Save mentix02/a95f8eb1dde7b9d3b2a054387e8801d0 to your computer and use it in GitHub Desktop.
Download songs.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Songs</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
</head> | |
<body> | |
<div class="container-fluid"> | |
<h1 class="heading text-center">Songs</h1> | |
<div class="row"> | |
<?php | |
$dir = "Music/"; | |
// print("Directory : ".$dir."<br>"); | |
if(is_dir($dir)){ | |
if($dh = opendir($dir)){ | |
while (($file = readdir($dh)) !== false){ | |
print(' | |
<div class="col-xs-11 col-md-2 col-sm-6"> | |
<div class="thumbnail"> | |
<a href="./Music/' . $file . '" download> | |
<img src="img.png" class="img-responsive" width="250" alt=""> | |
</a> | |
<div class="caption"> | |
<h4 class="text-center"><a href="./Music/' . $file . '" download>' . $file . '</a></h4> | |
<h5 class="text-center"></h5> | |
</div> | |
</div> | |
</div> | |
'); | |
} | |
} | |
} | |
?> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment