<?php

session_start();
$dezeUser = '******';
include 'classes/database.php';
$dbInst = new Database();
$db = $dbInst->connectToDatabase();
// $_SESSION['notification'] = array();
// check if alt-attribuut is set & voeg dit toe;
// var_dump($dbInst->selecteerDezeUser($dezeUser));
$iedereen = $dbInst->selecteerIedereen();
?>

<!DOCTYPE HTML>
<html>
<head>
	<title>Opdracht-</title>
	<meta charset="UTF-8">
	<link href="http://web-backend.local/css/global.css"
	rel="stylesheet"><style>input { display: block; margin: 10px;} #profielfoto {max-width: 200px; display: inline-block; margin-bottom: 20px;}</style>
</head>
<body>
<h1>Gegevens wijzigen</h2>
<div id="notification"><?php 
echo var_dump($_SESSION['notification']);
?>
</div>	<?php 
var_dump($iedereen);
?>

<?php