Почему само видео не показывается?Пространство есть,а видео нету.
Код:
<?
echo "<center>Видео</center><br>";
$result = mysqli_query($connect,"SELECT * FROM `video`");
if(!$result) {
print "<center>Ошибка:".mysqli_error()."</center>";
}
elseif(mysqli_num_rows($result) == 0) {
print "<center> Видео нет!</center>";
}
else {
$rows = array();
while ($row = mysqli_fetch_assoc($result))
{
$rows[]= $row;
}
$rows = array_reverse($rows);
foreach($rows as $row) {
echo "<center>
<iframe width='854' height='480' src='"
.$row['video_url']."'frameborder='0' allow='autoplay; encrypted-media' allowfullscreen></iframe></center><br><div style='width: 630px;height: 10px;background: orange;margin-left: 28%;margin-right: 28%;' ></div>";
}
}
?>
Фото БД: