Backend for songs.zachdecook.com
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
$files = scandir('.');
foreach( $files as $file ){
if ( strpos($file, '.php') !== FALSE || strpos($file, '.js') !== FALSE )
{
echo "<h3>$file</h3>";
echo '<pre>';
echo htmlspecialchars(file_get_contents($file));
echo '</pre>';
}
}
|