Welcome Guest, Not a member yet? Register   Sign In
Browser issue with form submit
#7

[eluser]darkhouse[/eluser]
Maybe it's because your &lt;form&gt; ends up being between <table> and <tr>, which is not allowed. Your form should be setup like this

Code:
&lt;?php echo form_open('foo/bar', $attributes); ?&gt;
<table>
<tr>....</tr>
</table>
&lt;/form&gt;

I think you really need to work on your HTML structure. I rarely use tables anymore, only for tabular data (which is their intended purpose). For forms I use fieldset, legend and label and you are able to style your forms better, plus they're more accessible.

I use the xhtml 1.0 strict doctype, don't use 1.1 yet as it's not fully supported. And make use of the [url="http://validator.w3.org/"]w3 validator[/url], it will identify html issues like this.


Messages In This Thread
Browser issue with form submit - by El Forum - 01-28-2009, 12:35 AM
Browser issue with form submit - by El Forum - 01-28-2009, 12:55 AM
Browser issue with form submit - by El Forum - 01-28-2009, 01:18 AM
Browser issue with form submit - by El Forum - 01-28-2009, 01:24 AM
Browser issue with form submit - by El Forum - 01-28-2009, 01:29 AM
Browser issue with form submit - by El Forum - 01-28-2009, 01:37 AM
Browser issue with form submit - by El Forum - 01-28-2009, 02:10 AM
Browser issue with form submit - by El Forum - 01-28-2009, 04:55 AM
Browser issue with form submit - by El Forum - 01-28-2009, 07:01 AM
Browser issue with form submit - by El Forum - 01-28-2009, 11:05 PM
Browser issue with form submit - by El Forum - 01-29-2009, 08:19 AM
Browser issue with form submit - by El Forum - 01-29-2009, 12:19 PM
Browser issue with form submit - by El Forum - 01-29-2009, 10:47 PM
Browser issue with form submit - by El Forum - 01-29-2009, 11:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB