<?php
//error_reporting(E_ALL ^ E_DEPRECATED); ini_set('display_errors', 1);
session_start();
include('script/variablen.php');
include('connect.php');

$result = mysqli_query($dbi,"SELECT video_ausrichtung FROM produkte WHERE video = '".$_GET['video']."'");
$row = $result->fetch_assoc();
?>
<!DOCTYPE html>
<html lang="de-CH">
<head>

<?php include('page_meta.php'); ?>

	<title>Produktevideo - Fux Elektrowerkzeuge GmbH</title>

<?php include('page_css.php'); ?>

<?php include('page_script_top.php'); ?>

<style>
	section {
		padding-top:0px;
	}
</style>
	
</head>

<?php
// WENN Cookie Admin aktiv
if ( !empty($_COOKIE["administrator"]) == 1 )
{
	echo '<body class="admin">'."\n";
}
else
{
	echo '<body oncontextmenu="return false">'."\n";
}

include('page_header_leer.php'); ?>

<div id="content">

<section>

	<article>
		<center>
			<video autoplay="autoplay" loop="loop" controls id="video_h">
				<source src="video/<?php echo $_GET['video'] ?>" type="video/mp4"/>
				Ihr Browser unterstützt das Video nicht!
			</video>
		</center>
	</article>

</section>

</div>

<?php include('page_script_bottom.php'); ?>

</body>
</html>