Leest u veel? vul dan s.v.p onderstaande in.

 
Wat leest u het liefst Thrillers
Streekromans
Griezelromans
Realistisch
Uw naam

PhP

<?php echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
if (IsSet($_POST['geweest']))
{
$fout 0;
if (
$_POST['naam'] == ""
   {
      
$fout 1;
      
$foutmelding "<center>U bent vergeten om uw naam in te vullen!";
   }
   if (
$_POST['boek'] == ""
   {
      
$fout 1;
      
$foutmelding "<center>U bent vergeten om het genre boek te kiezen!";
   }
if (
$fout == 0
   {
      
$mailadres "mail@solveg.nl";
      
$onderwerp$_POST['naam'] . " heeft zijn/haar genre boeken ingevuld";
      
$inhoud "Dit is het genre boeken van: " $_POST['boek']; 
      
$afzender "From: mail@solveg.nl"
      
mail ($mailadres$onderwerp $inhoud$afzender);
   }
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>formulier</title>
<link rel="stylesheet" href="phpcursus.css" type="text/css">
<link rel="shortcut icon" href="Images/hortensia.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="keywords" content="cursus PHP" />
<meta name="description" content="Uitleg werken met PHP" />
<meta name="Autor" content="Solveg" />
</head>
<?php 
if (IsSet($_POST['geweest'])) 
{
   if (
$fout == 0
   {
      echo 
'<p><font color="#ffff00"><center>U heeft onderstaande gegevens ingevuld en verstuurd.<br><br>Bedankt voor het invullen!<br><br>Solveg :-)</font></p>';
   } else {
      echo 
'<p><font color="#ffff00">'$foutmelding '</font></p>';
   } 
}    
?>

<form action="<?php echo $_SERVER['PHP_SELF'?>" method="post"> 
  <div align="center"></div>
  <table width="40%" align="center">
    <tr> 
      <td colspan="2"><?php echo "<center><h3>Leest u veel? vul dan s.v.p onderstaande in.<h/3>"?></td>
    </tr>
    <tr> 
      <td colspan="2">&nbsp;</td>
    </tr>
    <tr> 
      <td width="59%" rowspan="4">Wat leest u het liefst</td>
      <td width="41%"><input type="radio" name="boek" value="Thrillers" <?php 
if (IsSet($_POST['geweest'])) 
{
   if (
$_POST['boek'] == "Thrillers"
   {
      echo 
'CHECKED';
   }

?>
/>
        Thrillers </td>
    </tr>
    <tr> 
      <td><input type="radio" name="boek" value="Streekromans" <?php 
if (IsSet($_POST['geweest'])) 
{
   if (
$_POST['boek'] == "Streekromans"
   {
      echo 
'CHECKED';
   }

?>
/>
        Streekromans </td>
    </tr>
    <tr> 
      <td><input type="radio" name="boek" value="Griezelromans" <?php 
if (IsSet($_POST['geweest'])) 
{
   if (
$_POST['boek'] == "Griezelromans"
   {
      echo 
'CHECKED';
   }

?>
/>
        Griezelromans </td>
    </tr>
    <tr> 
      <td><input type="radio" name="boek" value="Realistisch"<?php 
if (IsSet($_POST['geweest'])) 
{
   if (
$_POST['boek'] == "Realistisch"
   {
      echo 
'CHECKED';
   }

?>
 />
        Realistisch</td>
    </tr>
    <tr> 
      <td>Uw naam 
        <?php 
   echo 
'<p><a href="index.php">PhP</a></p>'; } ?>
      </td>
      <td><input name="naam" type="text" id="naam" <?php 
if (IsSet($_POST['geweest'])) {
   echo 
'VALUE="'.$_POST['naam'].'"';
}
?>
/></td>
    </tr>
    <tr> 
      <td><input type="hidden" name="geweest" value="1" /> 
        <?php
if (!IsSet($_POST['geweest'])) 
{
   echo 
'<DIV ALIGN="center"><input type="submit" value="VERSTUREN"></DIV>';
}
if (
$fout == 1
{
   echo 
'<DIV ALIGN="center"><input type="submit" value="VERSTUREN"></DIV>';
}
?>
      <td></td>
    </tr>
   </tr>
  </table>
  <p align="center"></p>
  
  </form>
<?php show_source("opdr2-2.php");?> 
</body>
</html>