Submitting more than one html tag cause 404 Error in Codeigniter and Grocery Crud?

五迷三道 提交于 2019-12-12 03:08:14

问题


I'm using grocery crud with codeigniter to change some database columns,but I have a problem when I use html tags, I get 404 Not found error in firebug.

The following work:

But the following doesn't work because I have tried to style it :

When I click on source in the top left of the WYSIWYG editor and try to type in my html, sometimes it works and sometimes not:

<p>This works</p>

The following doesn't work (404 Not found):

<p> This <p>Hello</p> Not work </p>

The following doesn't work (404 Not found ):
<p></p>

The following works
<p>aaaa</p>


Any idea why do I get 404 if the I put an empty

tag but it works if I put something inside ?? Thanks in advance As long as I can see, it only works with 1 tag but if I use more than one tag it doesn't work :

<h1> This single line work </h1>

But if I use more than 1 html tag it won't work, for example the following doesn't work ( 404 Not found ?)

<h1>Hello</h1>
<h1>World</h1>

回答1:


Though there is very little information given, have you inserted the html tags inside the visual mode of the editor or html mode ? try inserting in html mode and paste. I think the issue at your end is related to special characters.



来源:https://stackoverflow.com/questions/29396975/submitting-more-than-one-html-tag-cause-404-error-in-codeigniter-and-grocery-cru

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!