Index PHP
Index PHP
php
$uploadDir = __DIR__ . '/../uploads/';
$files = array_diff(scandir($uploadDir), array('.', '..'));
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Painel de Áudios Gravados</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 30px;
background-color: #f5f5f5;
}
h1 {
color: #333;
}
table {
border-collapse: collapse;
width: 100%;
background-color: white;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
audio {
width: 200px;
}
</style>
</head>
<body>
<h1>Áudios Gravados</h1>
<table>
<thead>
<tr>
<th>Nome do Arquivo</th>
<th>Ouvir</th>
<th>Download</th>
</tr>
</thead>
<tbody>
<?php foreach ($files as $file): ?>
<tr>
<td><?php echo htmlspecialchars($file); ?></td>
<td>
<audio controls>
<source src="../uploads/<?php echo urlencode($file); ?
>" type="audio/3gpp">
Seu navegador não suporta áudio.
</audio>
</td>
<td>
<a href="../uploads/<?php echo urlencode($file); ?>"
download>Baixar</a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</body>
</html>