It looks like you're new here. If you want to get involved, click one of these buttons!
//12
<h5><?php echo $projects->heading; ?></h5>
//14
<?php echo $projects->description; ?>
$list_where = array('featured' => 'yes');
$model = 'projects_model';
$projects = fuel_model($model, array('find' => 'all','limit' => 10 ,'where' => $list_where));
?>
<?php if (!empty($projects)) : ?>
<?php foreach($projects as $project) : ?>
<h5><?php echo $projects->heading; ?></h5>
<p>
<?php echo $projects->description; ?>
</p>
<?php endforeach; ?>
<?php endif; ?>
Comments