Base de datos access.
El usuario lo ingresa en un input type="text" maxlength="7"
El campo en la bd es entero
Utilizo aspmaker y este es el codigo que genera para responder a tu pregunta de como lo guardo y como lo muestro.
lo guardo asi
Código PHP:
<% If F.Fact_num1.Visible Then %>
<tr>
<td class="ewTableHeader">Fact Num 1<span class="ewRequired"> *</span></td>
<td><span id="el_Fact_num1">
<input type="text" name="x_Fact_num1" id="x_Fact_num1" size="30" maxlength="7" value="<%= F.Fact_num1.EditValue %>"
<%= F.Fact_num1.EditAttributes %> onblur="cero7(this)">
</span></td>
</tr>
<% End If %>
y lo muesto asi
Código PHP:
<% If F.Fact_num1.Visible Then %>
<td<%= F.Fact_num1.CellAttributes %>>
<div<%= F.Fact_num1.ViewAttributes %>><%= F.Fact_num1.ListViewValue %></div>
</td>
<% End If %>
No se que mas comentarte.
Gracias...