@devmahesh wrote:
I'm getting input from text field dynamically by angularjs
Array format
item[0]['id'] = 0;
item[1]['text'] = 'abc';
item[0]['id'] = 1;
item[1]['text'] = 'xyz';
.
.
.
item[0]['id'] = n;
item[1]['text'] = 'zxc';
I want to post this array to my php script using angularjs service API
php script should accept this 2d array and save to database.
Posts: 1
Participants: 1