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>