• Publicidad

Duda con JavaScript

Todo lo relacionado con lenguajes de programación distintos de Perl: PHP, Java, C++, Ruby, Python, etc.

Duda con JavaScript

Notapor BigBear » 2012-08-22 13:07 @588

Tengo el siguiente código.

Sintáxis: [ Descargar ] [ Ocultar ]
Using php Syntax Highlighting
  1. <script>
  2. function abrirventana(texto) {
  3. ven=window.open("","name","height=500,width=500");
  4. var dd = ven.document;
  5. dd.write('<title>Console</title>');
  6. dd.write('<body bgcolor=#000000>');
  7. dd.write('<font color=green>');
  8. dd.write(texto);
  9. dd.close();
  10. }
  11. </script>
  12.  
  13. <form action='' method=POST>
  14. <input type=submit name=test>
  15. </form>
  16.  
  17. <?php
  18.  
  19. $texto = "
  20. Hola
  21. Mundo";
  22.  
  23. if (isset($_POST['test'])){
  24.  
  25. echo "<script>abrirventana('$texto');</script>";
  26.  
  27. }
  28.  
  29. ?>
Coloreado en 0.019 segundos, usando GeSHi 1.0.8.4


El problema está en que la ventana no aparece debido a un problema en la variable $texto. Eso sí, cuando la variable la junto sin espacios funciona pero cuando lo dejo como se ve en el código ya no funciona.

¿ Alguien me podría indicar el error ?
BigBear
Perlero frecuente
Perlero frecuente
 
Mensajes: 981
Registrado: 2009-03-01 18:39 @818

Publicidad

Volver a Programación en general

¿Quién está conectado?

Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 3 invitados

cron