Is it possible to submit multiple values for fields (text fields) such as an array? For example, I'd like to be able to hit 'Add Record' and set the date once and then enter the other fields via a comma separated array so that it explodes into different rows. For example, I'll do the following...
Date: 08.16.2013
Field One: Value One, Value Two, Value Three
And the records would be inserted like such...
1, 08.16.2013, Value One
2, 08.16.2013, Value Two
3, 08.16.2013, Value Three
Thanks!