i want to add (+)to add more than textfield for phone
<form method="post" action="" enctype="multipart/form-data">
<table width="800" border="0" dir="rtl" style="direction:ltr;">
<tr>
<td scope="col" style="direction:rtl;"><label for="textfield">name</label>
<div align="right">
<input type="text" name="person_name" id="person_name"/>
</div></td>
</tr>
<tr>
<td style="direction:rtl;"><label for="textfield">job</label>
<div align="right">
<input type="text" name="person_job" id="person_job" />
</div></td>
</tr>
<tr>
<td style="direction:rtl;"><label for="label">mobile</label>
<div align="right">
<input type="text" name="person_mobile" id="person_mobile" />
</div></td>
</tr>
<tr>
<td style="direction:rtl;"><label for="label2" >phone</label>
<div align="right">
<input type="text" name="person_phone" id="person_phone" />
</div></td>
</tr>
<tr>
<td style="direction:rtl;"><label for="label3">email</label>
<div align="right">
<input name="person_email" type="text" id="person_email" />
</div></td>
</tr>
<tr>
<td><label for="label4"></label>
<div align="right"></div></td>
</tr>
<tr>
<td colspan="2"><p align="right">
<input name="add" type="submit" id="add" value="add" />
</p></td>
</tr>
</table>
</form>
and how to insert to mysql db?
any help?