Código PHP:
<form id="form1" name="form1" method="post">
<label for="textarea"></label>
<table width="1796" border="0" cellspacing="2" cellpadding="2" align="center">
<tr bgcolor="#CCFF66">
<td width="165" align="center">Fecha</td>
<td width="213" align="center">Cargo</td>
<td width="129" align="center">Empresa</td>
<td width="261" align="center">Hora de ingreso</td>
<td width="265" align="center">Hora de Salida</td>
<td width="257" align="center">Nombre</td>
<td width="223" align="center">Apellido</td>
<td width="161" align="center">Obaservacion </td>
<td width="66" align="center"> </td>
</tr>
<?php
$consulta=mysql_query("SELECT *
FROM p_administrativo
INNER JOIN area_trabajao ON p_administrativo.ID=area_trabajao.ID ",$conexion);
while($mostrar=mysql_fetch_array($consulta))
{
?>
<tr>
<td height="50" width="165" align="center">
<?php
echo date("d-m-Y");
?>
</td>
<td align="center" width="213"><?php echo $mostrar['Cargo'];?></td>
<td align="center" width="129"><?php echo $mostrar['Empresa'];?></td>
<td align="center" width="261"><label for="checkbox"></label>
<label for="textfield"></label>
<input name="textfield" type="text" id="textfield" value=" " readonly="readonly" />
<input type="submit" name="button" id="button" value="Ingresar" /></td>
<td align="center" width="265"><label for="textfield2"></label>
<input name="textfield2" type="text" id="textfield2" readonly="readonly" />
<input type="submit" name="button2" id="button2" value="Ingresar" /><label for="checkbox2"></label></td>
<td align="center" width="257" ><?php echo $mostrar['Nombre'];?></td>
<td align="center" width="223"><?php echo $mostrar['Apellido']; ?></td>
<td align="center" width="161"><label for="textfield3"></label>
<textarea name="textfield3" id="textfield3"></textarea></td>
<td align="center" width="66"><input type="submit" name="button3" id="button3" value="Guardar" /></td>
<?php
}
?></tr>
</table>
</form>