代码点火器 - 基本 URL 在 <a href=“”> 标记中不起作用


Codeigniter - Base URL not working within the <a href=""> tag

对不起这个愚蠢的问题。我已经在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

任何帮助将不胜感激。谢谢。

尝试像这样使用:

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