<html>
<head>
<link rel="stylesheet" type="text/css" href="/levi/style.css" />
<title>Mijn eerste contact pagina, zonder verzenden</title></head>
<body>
<h3>Graag dit formulier invullen voor registratie</h3><br />
<?php
if (isset($_POST['verzenden'])) { if ($_POST['naam'] == "") {
$errors[] = 'Uw naam is niet ingevuld, vul nogmaals uw naam in';
} else {
$goed[] = 'Uw naam is correct ingevuld';
}
if ($_POST['achternaam'] == "") {
$errors[] = 'Uw achternaam is niet ingevuld, vul nogmaals uw achternaam in';
} else {
$goed[] = 'Uw achternaam is correct ingevuld';
}
if ($_POST['nickname'] == "") {
$errors[] = 'Uw gebruikersnaam is niet ingevuld, vul nogmaals uw gebruiksnaam in.';
} else {
$goed[] = 'Uw gebruikersnaam is correct ingevuld';
}
if ($_POST['leeftijd'] == "") {
$errors[] = 'Uw leeftijd is niet ingevuld, vul nogmaals uw gebruiksnaam in.';
} else {
$goed[] = "Je hebt cijfers ingevoerd";
} else {
$goed[] = "Je heb niet alleen maar cijfers ingevuld!";
}
}
if ($_POST['scripttaal'] == "") {
$errors[] = 'Uw heeft geen checkbox ingevuld, vul nogmaals de checkbox in.';
} else {
$goed[] = 'Uw scripttaalkennis is correct ingevuld';
}
if ($_POST['pc'] == "") {
$errors[] = 'Uw heeft geen checkbox ingevuld, vul nogmaals de checkbox in.';
} else {
$goed[] = 'Uw besturingsysteem is correct ingevuld';
}
if ($_POST['skilss'] == "") {
$errors[] = 'Uw heeft geen checkbox ingevuld, vul nogmaals de checkbox in.';
} else {
$goed[] = 'Uw skilss zijn correct ingevuld';
}
if ($_POST['ervaring'] == "") {
$errors[] = 'Uw heeft geen radiobutton ingevuld, vul nogmaals de radiobutton in.';
} else {
$goed[] = 'Uw ervaring is toegevoegd, bedankt voor uw medewerking.';
}
// Nu de variable error niet aan is gemaakt
foreach($errors as $error) {
}
foreach($goed as $item) {
}
foreach($skilss as $skills) {
}
foreach($pc as $computer) {
print $computer.'<br />'; }
}
?>
<form method="post" action="">
<table border="0" cellspacing="0">
<tr>
<td>Naam:</td>
<td><input name="naam" type="text" size="20" maxlength="10" value="" /></td>
</tr>
<tr>
<td>Achternaam:</td>
<td><input name="achternaam" type="text" size="20" maxlength="20" value="" /><td/>
</tr>
<tr>
<td>Nickname:</td>
<td><input name="nickname" type="text" size="20" maxlength="20" value="" /></td>
</tr>
<tr>
<td>Leeftijd:</td>
<td><input name="leeftijd" type="text" size="20" maxlength="2" value="" /></td>
</tr>
</table><br /><hr /><br />
<i>Vermeld uw scripttalenkennis</i>
<input type="checkbox" name="scripttaal[]" value="html">HMTL
<input type="checkbox" name="scripttaal[]" value="css">CSS
<input type="checkbox" name="scripttaal[]" value="php">PHP
<input type="checkbox" name="scripttaal[]" value="c">C
<input type="checkbox" name="scripttaal[]" value="javascript">Javascript<br /><br />
<i>Vermeld uw besturingssyteem</i>
<input type="checkbox" name="pc[]" value="xp">XP
<input type="checkbox" name="pc[]" value="vista">Vita
<input type="checkbox" name="pc[]" value="windows7">Windows 7
<input type="checkbox" name="pc[]" value="linux">Linux
<input type="checkbox" name="pc[]" value="mac">Mac OS<br /><br />
<i>Vermeld uw webmaster skills</i>
<input type="checkbox" name="skilss[]" value="beheren">Beheren
<input type="checkbox" name="skilss[]" value="design">Designen
<input type="checkbox" name="skilss[]" value="scripten">Scripten
<input type="checkbox" name="skilss[]" value="seo">SEO
<input type="checkbox" name="skilss[]" value="promo">Promotie
<input type="checkbox" name="skilss[]" value="anders">Anders<br /><br /><hr /><br />
<p><i>Wij vragen uw graag om uw mening te geven</i></p>
<input type="radio" name="ervaring" value="on">De registratie verliep snel
<input type="radio" name="ervaring" value="off">De registratie verliep niet snel<br /><br />
<input type="submit" name="verzenden" value="verzenden">
<input type="reset" value="Leeg maken">
</form>
</body>
</html>