<center>
<form method="POST" action="inserir3.php">
</form>
</center>
E dentro deste formulário vamos inserir os nomes dos campos e caixas de textos e um botão distribuidos dentro de uma tabela.
<table border="0" width="40%" bgcolor="#B0B0B0">
<tr >
<td width="35%"><font face="arial" size="3"
color="green">Nome:</font></td>
<td> <input type="text" size="20" name="nome"></td>
</tr>
<tr>
<td><font face="arial" size="3" color="green">Cargo:</font></td>
<td><input type="text" size="20" name="cargo"></td>
</tr>
<tr>
<td><font face="arial" size="3" color="green">Data Emissão:</font></td>
<td> <input type="text" size="20" name="data_emissao"></td>
</tr>
<tr>
<td><font face="arial" size="3" color="green">Entrada:</font></td>
<td><input type="text" size="20" name="entrada"></td>
</tr>
<tr>
<td><font face="arial" size="3" color="green">Inicio Almoço:</font></td>
<td><input type="text" size="20" name="inicio_almoco"></td>
</tr>
<tr>
<td><font face="arial" size="3" color="green">Termino Almoço</font></td>
<td> <input type="text" size="20" name="termino_almoco"></td>
</tr>
<tr>
<td><font face="arial" size="3" color="green">Saida:</font></td>
<td> <input type="text" size="20" name="saida"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Cadastrar"></td>
</tr>
</table>
</form>
<BR>