Dataview Submit Data To Server

I have a dataview that I add items to using input fields. Once a few items have been added, I need to submit the list to the server. My question is, how do I access that data from the $_POST (using php)?

Do you need to submit only added data or all ?
In second case you can use

webix.ajax().post("data.php", { data : list.serialize() });

And on server side you will have $_POST[“data”] with all data from the dataview

Thanks! It was the list.serialize() that i needed! Great