Codeigniter - 基本网址在<a href=""> tag</a>内无效

时间:2015-03-08 23:37:53

标签: php codeigniter

抱歉这个愚蠢的问题。我在stackoverflow上搜索了这个问题,但无法得到我的确切问题的答案。

反正。

这是我的代码:

$pid = $this->encrypt->encode($pid_info);
$data_user = array('first_name' => $first_name,
        'delete' => " <a href='base_url(profile/delete) . $pid'>Delete </a>");

但我的网址就像http://localhost/profile/view_note/base_url(delete)而不是http://localhost/profile/delete/$pid

非常感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:0)

试着像这样使用:

 $pid = $this->encrypt->encode($pid_info);
 $data_user = array(
   'first_name' => $first_name,
   'delete' => '<a href="'.base_url().'/profile/delete/'. $pid'">Delete </a>"
 );