5 lines
210 B
PHP
5 lines
210 B
PHP
|
|
<?php // no direct access
|
||
|
|
defined('_JEXEC') or die('Restricted access'); ?>
|
||
|
|
<?php foreach ($list as $item) : ?>
|
||
|
|
<strong><?php echo $item->title ?></strong> : <?php echo $item->data ?><br />
|
||
|
|
<?php endforeach; ?>
|