如何将多个数据从视图发布到控制器?

I am using codeigniter.I have a table in my view. When one row is filled totally that data must be posted to my controller class. How to do this. My view page.

<table style=" border-collapse: collapse;">
    <tr>
        <th>Employee</th>
        <th>Start Time</th>
        <th>ID</th>     
        <th>Mins</th>
        <th>Type</th>
    </tr>
    <tr id="1">
        <td contenteditable="true"><?php echo form_dropdown('employee', $options_category, set_value('employee'),'style="border-radius:0px; height:15px; font-size:10px; width:70px"');?></td>
        <td  contenteditable="true"><?php echo $date->format( 'H:i' ); ?></td>
        <td  contenteditable="true" ondblclick="mylist()"><?=$products['id']?></td>
        <td contenteditable="true" class="nr"><?=$products['mins']?></td>
        <td contenteditable="true"><?=$products['type']?></td>
    </tr>
    <tr id="2">
        <td contenteditable="true"><?php  echo form_dropdown('employee', $options_category, set_value('employee'),'style="border-radius:0px; height:15px; font-size:10px; width:70px"');?></td>
        <td  contenteditable="true"></td>
        <td  contenteditable="true" ondblclick="mylist()"><?=$products['id']?></td>
        <td contenteditable="true"></td>
        <td contenteditable="true"></td>        
    </tr>
</table>

I need to post the id that is filled totally.How to do this can someone help me code?