Tengo una duda: en PHP construyo una variable con la siguiente definición:
Código PHP:
$variable = "ESTA ES UNA PRUEBA LINEA 1\nESTA ES LA LINEA 2" ;
?>
<script language="javascript" type="text/javascript" > alert('<?= $variable; ?>'); </script>
ESTA ES UNA PRUEBA LINEA 1
ESTA ES LA LINEA 2
Pero no me ajecuta el alert. Ahora si cambio el codigo JavaScript de esta forma
Código PHP:
<script language="javascript" type="text/javascript" > alert('ESTA ES UNA PRUEBA LINEA 1\nESTA EL LA LINEA 2'); </script>
Cómo puedo lograr que poniendo el mensaje en una variable (o cadena) PHP muestre el alert como debe ser (con los saltos de linea)?
Gracias de antemano por la ayuda que me brinden