0% found this document useful (0 votes)
2 views2 pages

Index PHP

This document is a PHP script that generates an HTML page displaying a list of recorded audio files. It includes a table with options to listen to and download each audio file from a specified uploads directory. The page is styled with basic CSS for a clean and user-friendly interface.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Index PHP

This document is a PHP script that generates an HTML page displaying a list of recorded audio files. It includes a table with options to listen to and download each audio file from a specified uploads directory. The page is styled with basic CSS for a clean and user-friendly interface.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<?

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>

You might also like