When im using text area the output format is different from input format eg:
input as :
hi,
hello world.
it outputs :
hi,hello world
what changes i want to make this code to get a format as input.
<html>
<head>
</head>
<body>
<form method="get" action="textarea.php">
<pre>
<textarea name="name"> </textarea>
</pre>
<input type="submit" name="submit">
</form>
<?php
if(isset($_GET['submit']))
{
$name=$_GET['name'];
echo $name;
}
?>
</body>
</html>