I am basing a multiple entry form system based on your example you posted on FAQ recently:-
http://www.chronoengine.com/faqs/2700-how-can-i-have-a-button-to-add-more-form-inputs.html
I put the code in a custom code block and I understand it mostly but am not sure about how you process the data so it goes into form->data like below and you can see the output in the debugger, as you are not using a DB Record Loader.
http://www.chronoengine.com/faqs/2700-how-can-i-have-a-button-to-add-more-form-inputs.html
I put the code in a custom code block and I understand it mostly but am not sure about how you process the data so it goes into form->data like below and you can see the output in the debugger, as you are not using a DB Record Loader.
[recipient] => Array (
[1] => Array (
[name] => Simon
[address] => 12 High Steet
)
[2] => Array (
[name] => Steven
[address] => 72 Main Street
)
[3] => Array (
[name] => Sue
[address] => 4 Back Street
)
[4] => Array (
[name] => Sally
[address] => 99 ave de l'Opera
)
[5] => Array (
[name] => Sherlock
[address] => 1278 6th Steet
)
)