Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="nl">
- <head>
- <title>Mijn php-script</title>
- </head>
- <body>
- <h3>Uw gegevens zijn:</h3>
- <?php
- if (isset($_POST["AM"]))
- {
- echo ("Achternaam: ") . $_POST["AM"] . '<br/>';
- }
- else
- {
- //foutmelding
- }
- if (isset($_POST["VM"]))
- {
- echo ("Voornaam: ") . $_POST["VM"] .'<br/>';
- }
- else
- {
- //foutmelding
- }
- if (isset($_POST["AS"]))
- {
- echo ("Adres: ") . $_POST["AS"] .'<br/>';
- }
- else
- {
- //foutmelding
- }
- if (isset($_POST["PE"]))
- {
- echo ("Postcode: ") . $_POST["PE"] .'<br/>';
- }
- else
- {
- //foutmelding
- }
- if (isset($_POST["PS"]))
- {
- echo ("Plaats: ") . $_POST["PS"] .'<br/>';
- }
- else
- {
- //foutmelding
- }
- if (isset($_POST["ER"]))
- {
- echo ("Email-Adres: ") . $_POST["ER"] .'<br/>';
- }
- else
- {
- //foutmelding
- }
- if (isset($_POST['OG']))
- if ($_POST["taal"] == "ICT")
- {
- echo ("ICT-opleidingen zijn vol. Kies een andere opleiding.");
- }
- elseif
- {
- echo ("Uw opleiding: ") . $_POST["OG"];
- }
- ?>
- </body>
- </html >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement