我是 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()
我在做什么错?