Ver Mensaje Individual
  #9 (permalink)  
Antiguo 10/06/2010, 18:25
framos41
 
Fecha de Ingreso: noviembre-2008
Mensajes: 34
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: enviar formulario al cargar pagina

hola,
sigo clara mente los mismos pasos, este es todo el codigo que ocupo:


Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin título</title>
  6. <script type="text/javascript">
  7. window.onload = function() {    document.getElementById("mail").submit();};
  8. </script>
  9. </head>
  10. <body>
  11. <form action="mails.php" method="POST" name="envio" id="mail">
  12. <input name="texto" type="text" value="TITULO DE MENSAJE" size="40" readonly="readonly" ><br>
  13. <input name="texto1" type="text" value="CUERPO DE MENSAJE" size="40" readonly="readonly" ><br>
  14. <input name="texto2" type="text" value="Hora: <?php echo date ("H:i:s");?> " size="40" readonly="readonly" ><br>
  15. <input name="texto3" type="text" value="Fecha: <?php echo date ("j/n/Y");?> " size="40" readonly="readonly" ><br>
  16. <input name="firma" type="text" value="Remitente" size="40" readonly="readonly"><br>
  17. <input name="firma1" type="text" value="ENVIO DE MENSAJES AUTOMATICO" size="40" readonly="readonly"><br>
  18. <input type="submit" name="submit" value="enviar">
  19. </form>
  20. </body>
  21. </html>

que error puedo estar cometiendo?

el error que me sale es este:


Detalles de error de página web

Agente de usuario: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)
Fecha: Fri, 11 Jun 2010 00:20:29 UTC


Mensaje: El objeto no acepta esta propiedad o método
Línea: 7
Carácter: 33
Código: 0

que puede ser sabe alguien? porfavorrr

pd: el formulario esta con extencion .php (por la funcion de fecha y hora)

saludos gracias

Última edición por framos41; 10/06/2010 a las 18:33