File: D:/HostingSpaces/SBogers44/ledubtoernooi.nl/wwwroot/minikamp/kms/inschrijving_info.php
<?php
$inschrijving_id = $_GET['inschrijving_id'];
$inschrijving_id = checkData($inschrijving_id);
$q_nieuws = sprintf("SELECT kms_minikamp.voornaam, kms_minikamp.tussenvoegsel, kms_minikamp.achternaam, kms_minikamp.geslacht,
kms_minikamp.telefoonnummer, kms_minikamp.emailadres, kms_minikamp.adres, kms_minikamp.postcode, kms_minikamp.woonplaats, kms_minikamp.land,
kms_minikamp.opmerkingen, kms_minikamp.taal, kms_minikamp.betaald, kms_minikamp.sisow_id, kms_minikamp.datum, kms_minikamp.tijd FROM kms_minikamp WHERE inschrijving_id='%s'", $inschrijving_id);
$r_nieuws = mysql_query($q_nieuws);
$rec_nieuws = mysql_fetch_array($r_nieuws);
if($rec_nieuws['geslacht'] == "man"){
$aanhef = "Dhr.";
}else{
$aanhef = "Mevr.";
}
if($rec_nieuws['betaald'] == "yes"){
$betaald = "ja";
}else{
$betaald = "nee";
}
if($rec_nieuws['kamperen'] == "yes"){
$kamperen = "ja";
}else{
$kamperen = "nee";
}
?>
<h1>Inschrijving info</h1>
<strong>Contactpersoon:</strong> <?php echo($aanhef." ".html_entity_decode($rec_nieuws['voornaam'])); if(!empty($rec_nieuws['tussenvoegsel'])){ echo(" ".html_entity_decode($rec_nieuws['tussenvoegsel'])); } echo(" ".html_entity_decode($rec_nieuws['achternaam'])); ?><br />
<strong>Taal:</strong> <?php echo(html_entity_decode($rec_nieuws['taal'])); ?><br /><br />
<strong>Telefoonnummer:</strong> <?php echo(html_entity_decode($rec_nieuws['telefoonnummer'])); ?><br />
<strong>E-mailadres:</strong> <?php echo(html_entity_decode($rec_nieuws['emailadres'])); ?><br /><br />
<strong>Adres:</strong> <?php echo(html_entity_decode($rec_nieuws['adres'])); ?><br />
<strong>Postcode:</strong> <?php echo(html_entity_decode($rec_nieuws['postcode'])); ?><br />
<strong>Woonplaats:</strong> <?php echo(html_entity_decode($rec_nieuws['woonplaats'])); ?><br />
<strong>Land:</strong> <?php echo(html_entity_decode($rec_nieuws['land'])); ?><br /><br />
<strong>Opmerkingen:</strong> <?php echo(html_entity_decode($rec_nieuws['opmerkingen'])); ?><br /><br />
<strong>Betaald:</strong> <?php echo($betaald); ?><br />
<strong>Kenmerk:</strong> <?php echo(html_entity_decode($rec_nieuws['sisow_id'])); ?><br /><br />
<strong>Datum:</strong> <?php echo(date_dutch($rec_nieuws['datum'])); ?><br />
<strong>Tijd:</strong> <?php echo(html_entity_decode($rec_nieuws['tijd'])); ?><br /><br /><br />
<a style="margin-left:0;" class="submit_annuleren" href="index.php" title="Terug">Terug</a>