Finally resolve my problem on line 640 and line 678 :
Replace : $submit_value = [];
By : $submit_value = array();
Replace : $is_valid_number= [];
By : $is_valid_number= array();
Thank you for this great plugin !
Hey,
Thanks for finding the fix and sharing.
I’ve fixed it in version 1.1.1.
I believe that message was triggered because older versions of PHP don’t support creating arrays in that way – which means your web server is probably running PHP version 5.3.
If you can update your php version I would look into it (your host will be able to help you, but usually it’s as simple as logging into the management system, e.g. website.com/cpanel and going into ‘php version’ and changing it to the latest. then do a quick test to make sure things work still.). PHP version 7 had pretty significant performance benefits.
Thanks again.
Adding – I’m particularly excited about this plugin – I think it adds a lot to what Gravity Forms can do.
I wrote this plugin to replace paper/Excel budgets – so I needed repeatable rows, row calculations, column totals, various number formats, ability to specify decimal places, rounding rules, and range validation. — which I’m hoping all works – but as I’ve learned, numbers … user provided data … very complicated, e.g. stripping out non-numeric characters, formatting with commas/decimals, dollar symbol etc.
Any how – I would appreciate any feedback or suggestions.