我正在尝试通过表单操作在Codeigniter中提交表单我的网址是"注册/注册"当我提交它时,它正在添加现有URL的动作。我的英文太糟糕了,请参阅附图以获取详细信息。
示例:我的网站网址是example.com/d2t/index.php/Registration 我正在添加表单操作,如action ="注册/注册"。
然后它将我的表单网址添加到我的网站网址:example.com/d2t/index.php/Registration/Registration/register
答案 0 :(得分:4)
使用site_url()方法
action="<?php echo site_url("Registration/register") ?>"
或者您可以使用表单助手:
echo form_open('Registration/register');
http://www.codeigniter.com/userguide3/helpers/form_helper.html?highlight=form%20helper