In my code I have 2 forms that once sent, I would like the previous data to be cleaned in each one of them. Currently only "clean" the search data of the "faith" form
<div id="actualiza">
<form name="fe" action="" method="post">
<table border="2">
<tbody><tr><td>Nombre de Usuario</td>
<td><input name="txtbus" type="text"></td>
<td><input name="btn1" value="Buscar" type="submit" onsubmit="this.reset()"></td></tr>
</form>
</tbody></table>
<form name='contacto' method="POST" action="">
<div><etiqueta>Nombre de Usuario:</etiqueta><input type='text' id="usuario" name="usuario" value='<?php echo $row['nombre_usuario']?>'></div>
<div><etiqueta>Empleado:</etiqueta><input type='text' id="nombre" name="nombre" value='<?php echo $row['nombre']?>'></div>
<input name="btn2" value="Aceptar" type="submit" onsubmit="this.reset()">