Не знаю как правильно объяснить... Но мне нужно чтобы как-то вывод был не одного файла(видео), а чтобы с новой датой или временем был другой файл...
p.s. А вот код...
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML-Формы</title>
</head>
<body>
<p>Форма для отправки</p>
<form action="form.php" method="post" enctype="multipart/form-data">
<input type="file" name="filename"><br>
<input type="submit" value="Отправить">
</form>
<?php
$dir = 'temp/';
$path = scandir("temp");
foreach($path as $f){
if($f != '.' and $f != '..'){
echo $f."<br>";
}
}
?>
<video src="<?= $dir.$f ?>" controls width="500px" height="250px"></video>
<video src="<?= $dir.$f ?>" controls width="500px" height="250px"></video>
</body>
</html>