l106/werkmap/hfst11.php
<?php
$vnaam = $_POST['vnaam'];
$anaam = $_POST['anaam'];
$cvnaam = $_COOKIE['voornaam'];
if($vnaam && $anaam){
setcookie('voornaam', $vnaam, time()+15);
echo "<div style='color:rebeccapurple;'>Hallo $vnaam $anaam.</div>";
} else if($vnaam || $anaam) {
echo "<div style='color:red;'>Je hebt nog niet alles ingevuld.</div>";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
echo "<form method='post' action ='hfst11.php'>
<input type='text' name='vnaam' value='$cvnaam'>
<input type='text' name='anaam'>
<input type='submit' value='Posten'>
</form>";
?>
</body>
</html>
Resultaat
Made by Thijs Aarnoudse