summaryrefslogtreecommitdiffstats
path: root/application/views/file/fragments/audio-player.php
blob: 154153489de2fd6b6baee423c1af51a488b27a7e (plain)
1
2
3
4
5
6
7
8
<div class="container-wide">
<p>
	<audio controls="controls">
		<source src="<?php echo site_url($filedata["id"]); ?>">
	</audio>
	<?php echo anchor(site_url($filedata['id'])."/", htmlspecialchars($filedata["filename"])); ?>
</p>
</div>