我对 Codeigniter 和我的托管服务提供商有疑问...
我创建了一个带有函数 form_open('welcome/index') 的表单,它会生成这个 html 代码
<form action="http://gggg.com/index2.php/welcome/index" method="post">
,但这不起作用,事实上,当我提交表单时,我会在同一个页面中返回而没有效果。
我不得不说代码中没有错误,因为它可以在 localhost 中运行,并且如果我编写form_open('http://gggg.com/index2.php/welcome/index')
.
所以,总而言之,如果我写:
form_open('welcome/index')
,它不起作用,否则如果我写:
form_open('http://gggg.com/index2.php/welcome/index')
,它起作用
很奇怪,谁能帮帮我?