|
本帖最后由 chinesebear 于 2013-4-6 09:31 编辑
教程里的例子
http://localhost/ci/index.php/news/create
给数据库添加一条记录,点击确定之后,url为:http://localhost/ci/index.php/news/ci/index.php/news/create
然后是404错误提示。
我很纳闷应该不会有错啊。
代码全是用户手册里的。大侠指点一下!
解决:问题在于form_open("news/create"),函数会自动补全url,这样导致在原来的url(http://localhost/ci/index.php/news/ )后又加上了“ci/index.php/news/create ”。这样导致找不到网页的404错误。
将form_open("news/create") 替换成<form action="create" method="post" name="create">,就可以了。添加记录成功,yeah!
后来看了stblog的原代码发现它并没有用form_open()函数,而是直接写表单"<form action="" method="post" name="write_post">"。所以,form_open()应该是不太好用吧。 |
|