Ver Mensaje Individual
  #5 (permalink)  
Antiguo 26/07/2007, 00:47
elmiguel
 
Fecha de Ingreso: noviembre-2004
Mensajes: 10
Antigüedad: 20 años
Puntos: 0
Re: Resetear formulario

Hola caricatos, lo que quiero hacer es que cuando se le da a enviar el formulario se reinicie solo, y no tener que darle al boton de reset, ya que mucha gente no se cree que el envia ha sido realizado y lo envían varias veces.

Te añado el código del formulario para que veas si me falla algo:

<form METHOD="POST" ACTION="<?php echo $PHP_SELF; ?>">
<blockquote>
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="16%">
<p style="margin-top: 0; margin-bottom: 0"><FONT face=Arial
size=2>Tratamiento</FONT><font color="#FF0000">*</font></td>
<td width="84%">
<p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2"><span style="letter-spacing: 1pt"><input TYPE="RADIO" NAME="anrede" VALUE="Señor" <? echo $chk1 ?>></span>
Señor <input TYPE="RADIO" NAME="anrede" VALUE="Señora" <? echo $chk2 ?>>
Señora</font></td>
</tr>
<tr>
<td width="16%">
<p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">Titulación:</font></td>
<td width="84%">
<p style="margin-top: 0; margin-bottom: 0"><font face="Arial" size="2">
<input TYPE="RADIO" NAME="titel" VALUE="Profesional" <? echo $chk3 ?>>
Profesional <input TYPE="RADIO" NAME="titel" VALUE="Tecnico" <? echo $chk4 ?>>
Técnico&nbsp; <input TYPE="RADIO" NAME="titel" VALUE="Dipl.- Ing." <? echo $chk5 ?>>
Ingeniero <input TYPE="RADIO" NAME="titel" VALUE="Dr." <? echo $chk6 ?>>
Doctor <input TYPE="RADIO" NAME="titel" VALUE="Prof." <? echo $chk7 ?>> Profesor</font></td>
</tr>
</table>
</div>
</blockquote>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="689">
<tr>
<td width="106" height="35"><font size="2" face="Arial">Empresa</font><font color="#FF0000">*</font></td>
<td width="224"><input type="text" name="firma" size="32" tabindex="1" value="<? echo $firma ?>"></td>

<td><font size="2" face="Arial">Direcci&oacute;n</font><font color="#FF0000">*</font></td>
<td><input type="text" name="adresse" size="30" tabindex="5" value="<? echo $adresse ?>"></td>
</tr>
<tr>
<td width="106" height="35"><FONT face=Arial size=2>Departamento</FONT></td>
<td width="224"><input type="text" name="firmafort" size="32" tabindex="2" value="<? echo $firmafort ?>"></td>
<td width="133"><font face="Arial" size="2">Código postal</font><font color="#FF0000">*</font></td>
<td width="218"><input type="text" name="postcode" size="10" tabindex="6" value="<? echo $postcode ?>"></td>
</tr>
<tr>
<td width="106" height="35"><font size="2" face="Arial">Persona de contacto</font><font color="#FF0000">*</font></td>
<td width="224"><input type="text" name="kontakt" size="32" tabindex="3" value="<? echo $kontakt ?>"></td>
<td width="133"><font face="Arial" size="2">Localidad</font><font color="#FF0000">*</font></td>
<td width="218"><input type="text" name="ort" size="30" tabindex="7" value="<? echo $ort ?>"></td>
</tr>
<tr>
<td height="35"><font size="2" face="Arial">CIF/NIF</font><font color="#FF0000">*</font></td>
<td><input type="text" name="cif" size="32" tabindex="3" value="<? echo $cif ?>"></td>
<td><font face="Arial" size="2">Provincia</font></td>
<td><input type="text" name="provincia" size="30" tabindex="7" value="<? echo $provincia ?>"></td>
</tr>
<tr>
<td width="106" height="35"><font size="2" face="Arial">Email</font></td>
<td width="224"><input type="text" name="email" size="32" tabindex="4" value="<? echo $email ?>"></td>
<td width="133"><font face="Arial" size="2">País</font></td>
<td width="218"><input type="text" name="land" size="30" tabindex="8" value="<? echo $land ?>"></td>
</tr>
</table>
</center>
</div>
<p align="center">
<?
//If (!$submit){
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50%" align="right"><input TYPE="submit" VALUE="Solicitar" name="submit" tabindex="8"></td>
<td align="left"><input TYPE="reset" VALUE="Borrar" name="reset" tabindex="9"></td>
</tr>
</table>
<?
// }

// If ($submit){
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50" align="center">&nbsp;</td>
</tr>
</table>
<?


Un saludo y gracias de antemano