El código de JavaScript que no funciona es el siguiente:
Código:
Y el código completo es el siguiente:<html> <head> </head> <body> <SCRIPT> function acceso(envio.php){ window.location = document.formclave.clave.value + ".php" } function acceso(index.html){ window.location = document.form.clave.value + ".html" } </SCRIPT> <FORM name=formclave> <center><INPUT type=button value=Volver al Formulario onclick="acceso(envio.php)"> | <INPUT type=button value=Volver a la Página Principal onclick="acceso(index.html)"></center> </body> </html>
Código:
Ahora bien, si alguien pudiera decirme ¿cómo lo podría solucionar? se los agradecería ampliamente. <?php if (!isset($_POST['email'])) { ?> <form action="<?=$_SERVER['PHP_SELF']?>" method="post"> <table border="0" coldspan="6" rowspan="7" align="center"> <tr> <td> <label> <b>Nombre y Apellido:</b> <input name="nombre" type="text" value="Nombre y Apellido" onclick="this.value=''"/> | </label> <label> <b>Teléfono:</b> <input name="telefono" type="text" value="(0054)"/> </label> </td> </tr> <tr> <td align="left"> <br> <label> <b>Teléfono (Uruguay):</b> <input name="telefonoUy" type="text" value="(00598 53)"/> | </label> <label> <b>Fecha en Punta: </b> <input name="fecha" type="text" value="dd/mm/aa" onclick="this.value=''"/> </label> </td> </tr> <tr> <td align="center"> <br> <label> <b>Email:</b> <input name="email" type="text" value="@"/> | </label> <label> <b>BBM:</b> <input name="menssenger" type="text" value="8 dígitos." onclick="this.value=''"/> </label> </td> </tr> <tr> <td align="center"> <br> <input type="reset" name="Borrar datos" value="Borrar" /> | <input type="submit" name="Enviar datos" value="Enviar" /> </td> </tr> </table> </form> <?php }else{ $mensaje="Mensaje del formulario de contacto de www.retrocomputacion.com.ar"; $mensaje.= "\nNombre y Apellido: ". $_POST['nombre']; $mensaje.= "\nTeléfono: ". $_POST['telefono']; $mensaje.= "\nTeléfono (Uruguay): ". $_POST['telefonoUy']; $mensaje.= "\nFecha en Punta: ". $_POST['fecha']; $mensaje.= "\nEmail: ".$_POST['email']; $mensaje.= "\nBBM: ". $_POST['menssenger']; $destino= "[email protected]"; $remitente = $_POST['email']; $asunto = "Mensaje enviado por: ".$_POST['nombre']; mail($destino,$asunto,$mensaje,"FROM: $remitente"); echo("Muchas gracias por contactarnos. Le responderemos a la brevedad. <br/><br/> <b>Mensaje enviado por:</b> <br/><br/>"); echo ("<b>Nombre: </b>".$_POST['nombre']."<br/>"); echo ("<b>Teléfono: </b>". $_POST['telefono']."<br/>"); echo ("<b>Teléfono (Uruguay): </b>". $_POST['telefonoUy']."<br/>"); echo ("<b>Fecha en Punta: </b>". $_POST['fecha']."<br/>"); echo ("<b>Email: </b>".$_POST['email'])."<br/>"; echo ("<b>BBM: </b>". $_POST['menssenger']."<br/><br/>"); ?> <?php } ?> <html> <head> </head> <body> <SCRIPT> function acceso(envio.php){ window.location = document.formclave.clave.value + ".php" } function acceso(index.html){ window.location = document.form.clave.value + ".html" } </SCRIPT> <FORM name=formclave> <center><INPUT type=button value=Volver al Formulario onclick="acceso(envio.php)"> | <INPUT type=button value=Volver a la Página Principal onclick="acceso(index.html)"></center> </body> </html>