我正在尝试使用 codeigniter 锚作为链接,该链接调用一种方法来删除我的数据库中的一行。
<?php echo anchor("masterdata/delete_customer/$row->id",$row->customer_name) ?>
这很好用,但我想用图像替换文本。就像是:
<?php echo anchor('masterdata/delete_customer/$row->id',img(array('src'=>'images/delete_icon.png','border'=>'0','alt'=>'Delete'))); ?>
上面的语法会产生错误:
The URI you submitted has disallowed characters.
另外,是否可以将masterdata控制器路径替换为base_url路径?baseurl/masterdata/delete_customer...
非常感谢一如既往,