codeigniter Disallowed Key Characters

<!-- 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="">

你可能感兴趣的:(CodeIgniter)