The code below will give you the extra space before the message in text area:
<form name="form1" method="post" action="">
<textarea name="textarea">
<?php print $message; ?>
</textarea>
</form>
but the one below will not.
<form name="form1" method="post" action="">
<textarea name="textarea"><?php print $message; ?></textarea>
</form>
can you see the difference? As simple as that. ๐