File: D:/HostingSpaces/SBogers10/vangogh.komma-mediadesign.nl/wwwroot/vacatures.php
<?php include("recent_project.php"); ?>
<div class="contentTekst">
<h1 class="voorH2">Huidige vacatureaanbod</h1>
<?php
$q_vacatures = "SELECT kms_vacatures.naam, kms_vacatures.omschrijving FROM kms_vacatures ORDER BY kms_vacatures.naam ASC";
$r_vacatures = mysql_query($q_vacatures);
while($rec_vacatures = mysql_fetch_array($r_vacatures)){ ?>
<?php if(empty($rec_vacatures[0])){ ?>
<p>Er zijn op dit moment helaas geen vacatures.</p>
<?php } ?>
<h2><?php echo(html_entity_decode($rec_vacatures['naam'])); ?></h2>
<?php echo(html_entity_decode($rec_vacatures['omschrijving'])); ?>
<?php } ?>
</div>