I have a contact form on my site that has four text boxes. It is like a normal contact form, but in the "message" box (which is an html textarea), there are random spaces that show up every time the page loads. The placeholder does not show unless you delete the spaces before typing. What can I do to fix this?
Here is the code:
<div class="form-group">
<label for="message" class="col-sm-2 col-md-12 col-lg-12 control-label-top color-dark">Message</label>
<div class="col-sm-10 col-md-6 col-md-offset-3">
<textarea class="form-control" rows="5" name="message"><?php echo htmlspecialchars($_POST['message']);?>
</textarea>
<?php echo "<p class='text-danger'>$errMessage</p>";?>
</div>