Simplified Data Array
Brought to you by:
egravel
It would be simpler for developers to code the tag's
definition data array using structures instead of
array index ro represent a field name or a error
message type.
IE:
StructInsert( requiredCheck, "fieldType", "text" );
is easier to code then
requiredCheck[i][3] = "text";
It's easier in the sense that you know what that array
element is for and it allows you to insert any new
fields without worrying how it'll look at that
position.