<!-- will cause the error -->
<input type="text" name="fieldname['foo']" value="">
<!-- won't cause the error. besides, this is the proper syntax. -->
<input type="text" name="fieldname[foo]" value="">
<input type="text" name="fieldname['foo']" value="">
<!-- won't cause the error. besides, this is the proper syntax. -->
<input type="text" name="fieldname[foo]" value="">