1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-06-25 11:00:29 +02:00

Phase 1 : envoi des vidéos (en cours)

This commit is contained in:
galaxyoyo
2019-09-13 00:11:41 +02:00
parent 51282d13ea
commit 0fdae19f2d
2 changed files with 22 additions and 1 deletions

View File

@ -8,6 +8,17 @@ elseif (isset($new_video))
echo "<h2>Votre vidéo a bien été envoyée !</h2>";
?>
<?php
while (($data = $videos_req->fetch()) !== false) {
$link = $data["link"];
echo "<a href=\"$link\">$link</a><br />";
if (preg_match("#https?\://www\.youtube\.com\/watch\?v=(.*)#", $link, $matches)) {
$code = $matches[1];
echo "<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/$code\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></center><br />";
}
}
?>
<form method="POST">
<table style="width: 100%;">
<tbody>