10-22-2007, 07:31 AM
[eluser]John_Betong[/eluser]
Hi Isabelle,
Try this in your view:
Hi Isabelle,
Try this in your view:
Code:
function show_row($row) {
$list = explode(",", $row->tags);
$cnt = count($list);
?>
<h1><?= $row->app_name ?></h1>
<p>
<span class="pink">
Description : <?= $row->app_short_description ?>
</span>
</p>
<p>
<span class="pink">
Url :
</span>
<a href = "<?= $row->app_url ?>"
title = "<?= $row->app_short_description ?>"
>
<?= $row->app_url ?>
</a>
</p>
<p>
<span class="pink">
Description :
</span>
<small>
<?= $row->app_description ?>
</small></p><br />
<small>
<span class="pink">
Mots-clé :
</span>
<a href="" title="">
<?= $cnt ?>
</a> |
</small>
</p><!-- </div> -->
<?php
}// endfunc show_row($row)
foreach($query->result() as $row):
show_row($row);
endforeach;
echo '</div>';