<?php
//error_reporting(E_ALL ^ E_DEPRECATED); ini_set('display_errors', 1);
session_start();
include('script/variablen.php');
include('connect.php');
?>
<!DOCTYPE html>
<html lang="de-CH">
<head>

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

	<title>Mafell Power-Set Aktion - 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.php'); ?>

<div id="content">

<section>

	<h1>Mafell Power-Set Aktion</h1>
	Beim Kauf einer PURE-Maschine erhalten Sie optional ein vergünstigtes Power-Set!<br><br>

	<article>
<?php
include('produkte_layout_result.php');
$result .= "WHERE p.produkt LIKE '%pure%' AND p.marke='60' AND p.art='1' ORDER BY produkt";
$result = mysqli_query($dbi, $result);

// Prüfen ob Black aktiv
$result_black = mysqli_query($dbi,"SELECT black_von FROM black WHERE black_von <= '$datum' AND black_bis >= '$datum'");

while($row = mysqli_fetch_assoc($result)) {
include('produkte_layout.php');
}
?>
	</article>

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

</section>

</div>

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

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

</body>
</html>