File: D:/HostingSpaces/SBogers10/rooymans.komma-mediadesign.nl/wwwroot/portfolio.php
<?php include('breadcrump_algemeen.php'); ?>
<h1><?php echo(html_entity_decode($rec_pageGegevens['page_name'])); ?></h1>
<div class="links">
<a class="actionBtn knopMedium" href="/offerte-aanvragen"><span class="text">Vraag offerte aan</span><span class="up"></span><span class="hover"></span><span class="upRight"></span><span class="hoverRight"></span></a>
</div>
<div class="clear_both"></div>
<div class="columnLeft">
<?php echo(html_entity_decode($rec_pageGegevens['descriptionLeft'])); ?>
</div>
<div class="columnRight">
<?php echo(html_entity_decode($rec_pageGegevens['descriptionRight'])); ?>
</div>
<div class="clear_both"></div>
<ul class="klanten">
<?php
$q_portfolioItems = "SELECT kms_portfolio.portfolio_id, kms_portfolio.naam, kms_portfolio.url, kms_portfolio.image_dir FROM kms_portfolio ORDER BY kms_portfolio.naam";
$r_portfolioItems = mysql_query($q_portfolioItems);
$marginCounter = 0;
while($rec_portfolioItems = mysql_fetch_assoc($r_portfolioItems)){ ?>
<li <?php if($marginCounter % 3 == 0){ echo("class=\"noMargin\""); } $marginCounter++; ?>>
<a href="/portfolio/<?php echo($rec_portfolioItems['url']); ?>" title="<?php echo(html_entity_decode($rec_portfolioItems['naam'])); ?>">
<span class="logo" style="float:left; margin-top:10px; width: 118px; height: 70px; display: block; background-image: url('/portfolio_images/<?php echo($rec_portfolioItems['image_dir']); ?>/thumb.jpg'); background-position: left bottom"></span>
</a>
</li>
<?php } ?>
</ul>