我是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_ac
的函数activate_customer()
中处理客户。
我做错了什么?
答案 0 :(得分: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-&gt; cust_id变量。你确定,这是正确的数据。我没有在你的链接中看到它。