php - Remove Spaces in HTML Message Box -
i have contact form on site has 4 text boxes. normal contact form, in "message" box (which html textarea), there random spaces show every time page loads. placeholder not show unless delete spaces before typing. can fix this?
here 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>
by textareas must carefull:
<textarea></textarea
would not have inner spaces, but:
<textarea> </textarea>
will have them.
Comments
Post a Comment