How to insert the datas from a <table> rows into the database without any <input> ?
In CodeIgniter, I have a function where I can generate random users, which are inserted into the <table>...</table> using an AJAX method by clicking on a $('#btnGenerate');
It fills out an empty table with the new table rows (<tr>). Here how it looks like:

Now when I want to save these new rows into the database, I don't know how to proceed. As far as I know, I need to have an array which will be then posted into the form's action: members/form_random for example with the $this->input->post('someInputName');?>. How can I do that if I don't use any <input> tags inside the table ?
Any advice for solution ?