<?php
// ----------------------------------------------------------------------------
// Script Author: Robert Holland
// Script Name: index.php
// Creation Date: Wed Oct 11 2023 06:44:46 GMT-0700 (MST)
// Last Modified:
// Copyright (c)2024
// Version: 1.0.0
// Purpose: Display Brother sewing machine videos.
// ----------------------------------------------------------------------------
//Multiple file extensions:
//foreach (glob("{*.pdf,*.jpg,*.txt,*.mp4,*.zip}",GLOB_BRACE ) as $file) {
//echo "<a href='" . $file . "' target='_blank'>" . $file . "</a><br />";
//}
//Multiple file extensions:
echo "
<html><head><style></style></head><body>
<br /><img src='./img/CS7000X.webp' /><br /><br />
";
foreach (glob("{./videos/*.mp4,./videos/*.webm}",GLOB_BRACE ) as $file) {
//echo "<a href='" . $file . "' target='_blank'>" . $file . "</a><br />";
$ext = pathinfo($file, PATHINFO_EXTENSION);
$vidname="<br />" . str_replace("./videos/", "", $file) . "<br />";
$vidname=str_replace(".mkv","",$vidname);
$vidname=str_replace(".webm","",$vidname);
$vidname=str_replace("_"," ",$vidname);
echo "
<video width='520' height='340' controls>
<source src='" . $file . "' type=video/" . $ext . ">
</video>
" . $vidname . "";
}
echo "<br /></body></html>";
?>