示例#1
0
session_start();
if (empty($_SESSION['username'])) {
    header('Location:Auth.php');
}
$idd = $_GET['id'];
$msg = $_GET['msg'];
echo $msg;
$actoractions = new ActorsActions();
$actors = $actoractions->getAllActors();
$query = $actoractions->getSpecificActor($idd);
$specificactor = $query->fetch(PDO::FETCH_ASSOC);
$catactions = new CategoriesActions();
$categories = $catactions->getAllCategories();
$vidactions = new VideosActions();
$videos = $vidactions->getVideosForSpecificCategorie($idd);
$upit = $vidactions->GetAllVideosOfSpecificActor($idd);
$videosofactor = $upit->fetch(PDO::FETCH_ASSOC);
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        body{
            background-image: url("../Images/background2.jpg");
            background-repeat: no-repeat;
            background-size:100% 100%;
        }
        .video-js
        {
            width: 100%;!important;
        }