<!DOCTYPE html>
  <html lang="en">
  <head>
    <title>TRAP SHOES RADIO</title>
    <link rel="stylesheet" href="css/style.css">
  </head>
  <body>
    <h1 style="color:Tomato">RADIO INTERFACE</h1>
    <a href="https://trap.shoes/radio/stream.php" target="_self">
      <button class="button">Open Live Stream</button>
    </a>

    <?php
    // Your PHP code here
    $audioFiles = glob('*.{mp3,ogg,flac,wav,m4a,aac}', GLOB_BRACE);
    
    if (empty($audioFiles)) {
        echo '<p>No audio files found</p>';
    } else {
        echo '<ul>';
        foreach ($audioFiles as $file) {
            echo '<li>' . htmlspecialchars(basename($file)) . '</li>';
        }
        echo '</ul>';
    }
    ?>

  </body>
  </html>
