Browse Source

List priority banners in banners.php.

pull/40/head
Michael Walker 8 years ago
parent
commit
5cf54dbce0
  1. 9
      banners.php

9
banners.php

@ -4,14 +4,19 @@
</head>
<body>
<?php
if ($handle = opendir('banners')) {
function listBannersInDir($dir) {
if ($handle = opendir($dir)) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
echo "<a href=\"banners/$entry\"><img src=\"banners/$entry\" alt=\"$entry\" style=\"width:348px;height:128px\"></a> ";
echo "<a href=\"$dir/$entry\"><img src=\"$dir/$entry\" alt=\"$entry\" style=\"width:348px;height:128px\"></a> ";
}
}
closedir($handle);
}
}
listBannersInDir("banners_priority");
listBannersInDir("banners");
?>
</body>
</html>

Loading…
Cancel
Save