【发布时间】:2017-10-09 04:53:33
【问题描述】:
我需要在 codeigniter 中提供一些指向我的 items 类别的超链接。
$this->data['itemdata'] = array(
array(
'title' => 'Printers / Accessories',
'items' => ['Printers', 'Printer Cartridges', 'Compatible Toners'],
'brands' => ['hp', 'cannon', 'brother', 'toshiba', 'sharp']
),
如何创建它?
更新 查看文件
<div class="items">
<ul class="floated">
<?php foreach ($item['items'] as $key => $value): ?>
<li><?php echo $value; ?></li>
<?php endforeach; ?>
</ul>
</div>
【问题讨论】:
标签: php codeigniter