25 lines
581 B
PHP
25 lines
581 B
PHP
|
<h1>Site web Projet L3</h1>
|
||
|
|
||
|
<form method="get" action="default">
|
||
|
<button type="submit">Retour</button>
|
||
|
</form>
|
||
|
|
||
|
<form method="get" action="connexion/disconnect">
|
||
|
<button type="submit">Deconnexion</button>
|
||
|
</form>
|
||
|
|
||
|
<?php foreach($videos as $i => $video): ?>
|
||
|
<h5>Du <?=$video["begin"]?> au <?=$video["end"]?></h5>
|
||
|
<div id="rtmp-player-container-<?=$i?>"></div>
|
||
|
<script>
|
||
|
jwplayer("rtmp-player-container-<?=$i?>").setup({
|
||
|
file: "<?=$video['path']?>",
|
||
|
preload: false
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<?php endforeach; ?>
|
||
|
|
||
|
|
||
|
|