File: D:/HostingSpaces/SBogers10/vangogh.komma-mediadesign.nl/wwwroot/kms/logoboek_overzicht.php
<h1>Projecten</h1>
<p><br /><a href="index.php?p=ontwikkeling_toevoegen" title="Projectontwikkeling toevoegen">Projectontwikkeling toevoegen</a></p>
<table cellpadding="20" cellspacing="0" border="0">
<tr height="40">
<th width="150"><span style="padding-left:10px;">Image</span></th>
<th width="260">Naam</th>
<th width="350">Introductie</th>
<th width="110">Wijzigen</th>
<th width="110">Verwijderen</th>
</tr>
<?php
$q_nieuws = "SELECT kms_projectontwikkeling.ontwikkeling_id, kms_projectontwikkeling.naam, kms_projectontwikkeling.introductie, kms_projectontwikkeling.image_dir FROM kms_projectontwikkeling ORDER BY kms_projectontwikkeling.naam ASC";
$r_nieuws = mysql_query($q_nieuws);
$kleur = true;
while($rec_nieuws = mysql_fetch_array($r_nieuws)){ ?>
<tr height="120" <?php if($kleur) { echo("style=\"background-color:#eee\""); $kleur = false; }else{ $kleur = true; }?>>
<td><div class="thumb" style="width:125px; height:95px; margin-left:10px;"><img width="125" src="/ontwikkeling_images/<?php echo($rec_nieuws[3]); ?>/ontwikkeling_foto.jpg" alt="<?php echo(html_entity_decode($rec_nieuws[1])); ?>" /></div></td>
<td><?php echo(html_entity_decode($rec_nieuws[1])); ?></td>
<td><?php echo(html_entity_decode($rec_nieuws[2])); ?></td>
<td>
<a href="index.php?p=ontwikkeling_wijzigen&ontwikkeling_id=<?php echo($rec_nieuws[0]); ?>">Wijzigen</a>
<br /><br />
<a href="index.php?p=logboek_overzicht&ontwikkeling_id=<?php echo($rec_nieuws[0]); ?>">Logboek wijzigen</a>
</td>
<td><a href="index.php?p=ontwikkeling_verwijderen&ontwikkeling_id=<?php echo($rec_nieuws[0]); ?>">Verwijderen</a>
<br /><br /><br />
</td>
</tr>
<?php } ?>
</table>