implemented session assignment.

This commit is contained in:
Joshua Ashton
2025-02-09 16:53:31 -07:00
parent 6068d8ac45
commit 43b296635e
15 changed files with 524 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
session_start();
if ($_SESSION['access'] !== true)
header('Location: .');
echo '<h1>YouTube Video</h1>';
echo '
<iframe width="560" height="315" src="https://www.youtube.com/embed/8BIcAZxFfrc?si=DMccopjQMFNs361I" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
';
?>