0

我是 codeigniter 的初学者,我正在创建一个简单的应用程序来显示待处理的客户,并且管理员可以激活它。但是当我从视图链接时

echo 'Not activated.<a href="create_ac/activate_customer/'.$v->cust_id.'"> Activate Now ? </a>';

链接就像localhost/ci/index.php/create_ac/show_ac_details/create_ac/activate_customer/

我的客户从控制器create_ac的功能中显示出来,我将在控制器的功能show_ac_details()中处理客户。create_acactivate_customer()

我在做什么错?

4

1 回答 1

0

尝试这个

echo 'Not activated.<a href="activate_customer/'.$v->cust_id.'">
Activate Now ? </a>';

最好使用codeigniter url helper。然后你可以使用anchor()这样的功能

echo anchor("create_ac/activate_customer/" . $v->cust_id, 'Activate Now ?');

我不确定 $v->cust_id 变量。你确定,那是得到正确的数据。我在你的链接中没有看到。

于 2013-05-27T09:38:40.430 回答