我需要給我的項目 codeigniter類別的一些超鏈接。如何給超鏈接CodeIgniter中的項目
$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>
你必須做的看法? –
你能看到我的更新消息嗎 – John