krijg ik als ik naar de inlog page wil.. wat word hier mee bedoeld ?
hier heb je de code van check.php
<?php
session_start();
// stap 1: db variabelen, vul deze in voor jouw situtatie
$host = "localhost";
$user = "ytgxemoy";
$pass = "********";
$db = "ytgxemoy_helloagain";
$naam = "admin";
$wachtwoord = "test";
if(isset($_POST['naam']))
{
if(($_POST['naam'] == $naam) && ($_POST['wachtwoord'] == $wachtwoord))
{
$_SESSION['ingelogd'] = true;
header ("location:beheer/admin.php");
}
}
?>