Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/07/2010, 08:44
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 5 meses
Puntos: 65
Respuesta: convertir texto a parrafo?

si haces un echo y no se ve los enter de un textarea usá nl2br de php que los tranforma en br

Código PHP:
</head>
<body>
<form action="" method="post">
    <textarea name="text"></textarea>
    <input type="submit">
</form>

<?php
    
echo nl2br$_POST['text'] );
?>
</body>
</html>