mzcoxfde
mzcoxfde

Reputation: 235

Tab spaces in textarea issue

Here's my code for my simple CRUD site:

<textarea id="bb" class="form-control"name="text" placeholder="Edit this question, <?= $_SESSION['name'] ?>?"> <?= $text ?> </textarea>

But the problem is that the textarea has 2 tab spaces at the beginning of the text and after the text there is a space with a tab space next to it.

I'm very sure that the text is trimmed in the MySQLi database. I'm using Bootstrap BTW.

Thanks in advance.

Upvotes: 2

Views: 449

Answers (1)

Passionate Coder
Passionate Coder

Reputation: 7294

Remove space between <textarea></textarea>

<textarea id="bb" class="form-control"name="text" placeholder="Edit this question, <?= $_SESSION['name'] ?>?"><?= $text ?></textarea>

Upvotes: 3

Related Questions