<?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 youtube, youtube_2, youtube_3 FROM produkte WHERE youtube = '".$_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'); ?>

</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">
<?php
if ( $row['youtube'] != '' )
{
	$stueck = 1;
}
if ( $row['youtube_2'] != '' )
{
	$stueck = 2;
}
if ( $row['youtube_3'] != '' )
{
	$stueck = 3;
}
?>
<section>

	<article class="center">
		<?php
		if ( $stueck == 1 )
		{
			echo '<iframe width="586" height="440" id="youtube" src="https://www.youtube.com/embed/'.$_GET['video'].'?rel=0&autoplay=1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>';
		}
		elseif ( $stueck == 2 )
		{
			echo '<iframe width="586" height="440" src="https://www.youtube.com/embed/'.$_GET['video'].'?rel=0&autoplay=0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>
			<iframe width="586" height="440" src="https://www.youtube.com/embed/'.$row['youtube_2'].'?rel=0&autoplay=0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>';
		}
		elseif ( $stueck == 3 )
		{
			echo '<iframe width="586" height="410" style="max-width:100%" src="https://www.youtube.com/embed/'.$_GET['video'].'?rel=0&autoplay=0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>
			<iframe width="586" height="410" style="max-width:100%" src="https://www.youtube.com/embed/'.$row['youtube_2'].'?rel=0&autoplay=0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>
			<iframe width="586" height="410" style="max-width:100%" src="https://www.youtube.com/embed/'.$row['youtube_3'].'?rel=0&autoplay=0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>';
		}

		// profit
		if ( $_GET['video'] == 'tqT7Y5GrIko' )
		{
			echo '<iframe width="586" height="440" id="youtube" src="https://www.youtube.com/embed/'.$_GET['video'].'?rel=0&autoplay=1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder="0" allowfullscreen></iframe>';
		}
		?>
	</article>

</section>

</div>

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

</body>
</html>