Save To Database From Table

Dear all friend please help me.

I have one controller name: ExpenseController.php

I have two models name: ZfiExpenseDetail.php and ZfiExpenseHeader.php

and one page name: create.php

I write all code in create.php. My purpose want insert all item on table to database on model ZfiExpenseDetail.php

<table class="table table-striped table-hover" id="list">

                  &lt;thead&gt;


                    &lt;tr bgcolor=&quot;#CCCCCC&quot;&gt; 


                      &lt;td&gt;Item&lt;/td&gt;                        


                      &lt;td&gt;Date&lt;/td&gt;


                      &lt;td&gt;Expense Catg&lt;/td&gt;


                      &lt;td&gt;Description&lt;/td&gt;


                      &lt;td&gt;Receipt Amount&lt;/td&gt;


                      &lt;td&gt;Currency&lt;/td&gt;


                      &lt;td&gt;Exchange Rate&lt;/td&gt;


                      &lt;td&gt;Amount&lt;/td&gt;


                      &lt;td width=&quot;100px&quot;&gt;Action&lt;/td&gt;


                    &lt;/tr&gt;


                  &lt;/thead&gt;


                     &lt;tbody class=&quot;auto&quot;&gt;                        


       		&lt;tr&gt;

<td>0001</td>

<td>01-08-2014</td>

<td>food</td>

<td>Test</td>

<td>100</td>

<td>10</td>

<td>100</td>

<td class="dynbox1">10000</td>

</tr>

<tr>

<td>0003</td>

<td>01-08-2014</td>

<td>food</td>

<td>Desc</td>

<td>50</td>

<td>100</td>

<td>100</td>

<td class="dynbox1">5000</td>

</tr>

<tr>

<td>0005</td>

<td>01-08-2014</td>

<td>food</td>

<td>Desc</td>

<td>25</td>

<td>10</td>

<td>100</td>

<td class="dynbox1">5000</td>

</tr>

</tbody>

</table>

Please help me show code details or example. Very thank.

How to insert?