370

I have a simple text area in a form like this:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink">
<?php     if($siteLink_val) echo $siteLink_val;?> 
                            </textarea>

I keep getting extra white space in this textarea. When I tab into it my cursor is like in the middle of the textarea and not in the beginning? What is the explanation?

Your Common Sense
  • 156,878
  • 40
  • 214
  • 345
Afamee
  • 5,160
  • 9
  • 38
  • 43
  • As firmly defined in all upvoted answers, tldr; is this behavior is in the desktop client browser window. It depends how the DOM interpreter handles it but any excess spaces are whitespaces/comments - but they are still is included in HTML renderer. Thus the newlines/whitespaces, combine `` with no whitespace to the next DOM element defined ( – mschr Jan 12 '22 at 17:42
  • Do not insert any spaces or newlines inside the in the code editor. If you insert spaces or enters inside, like the next sample pseudocode, you will get misterious spaces inside your textarea in the web page: – user2648846 Apr 20 '23 at 13:53

23 Answers23

631

Look closely at your code. In it, there are already three line breaks, and a ton of white space before </textarea>. Remove those first so that there are no line breaks in between the tags any more. It might already do the trick.

Note that if($siteLink_val) condition is superfluous in this case and can be safely removed.

What is more important, all HTML output must be obligatory HTML-encoded. Hence your code could be like this

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php 
    echo htmlspecialchars($siteLink_val);
?></textarea>
Your Common Sense
  • 156,878
  • 40
  • 214
  • 345
Pekka
  • 442,112
  • 142
  • 972
  • 1,088
110

Well, everything between <textarea> and </textarea> is used as the default value for your textarea box. There is some whitespace in your example there. Try to eliminate all of that.

Make sure that the following is the case:

<textarea><?php 

    *more php code here...*

?></textarea> 
Louis
  • 3
  • 2
amarillion
  • 24,487
  • 15
  • 68
  • 80
75

Open (and close!) your PHP tags right after, and before, your textarea tags:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php
  if($siteLink_val) echo $siteLink_val;
?></textarea>
Bart Kiers
  • 166,582
  • 36
  • 299
  • 288
53

In short: <textarea> should be closed immediately on the same line where it started.


General Practice: this will add-up line-breaks and spaces used for indentation in the code.

<textarea id="sitelink" name="sitelink">
</textarea>

Correct Practice

<textarea id="sitelink" name="sitelink"></textarea>
pega wega
  • 809
  • 8
  • 13
30

Basically it should be

<textarea>something here with no spaces in the begining</textarea>

If there are some predefined spaces lets say due to code formatting like below

<textarea>.......
....some_variable
</textarea>

The spaces shown by dots keeps on adding on each submit.

beebek
  • 1,893
  • 5
  • 29
  • 33
12

Any space in between textarea openning and closing tags will be consider as whitespace. So for your above code, the correct way will be :

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php if($siteLink_val) echo $siteLink_val; ?></textarea>
Gyan
  • 498
  • 6
  • 10
10

I got the same problem, and the solution is very simple: don't start a new line! Although some of the previous answers can solve the problem, the idea is not stated clearly. The important understanding is, to get rid of the unintended spaces, never start a new line just after your start tag.

The following way is WRONG and will leave a lot of unwanted spaces before your text content:

 <textarea>
    text content // start with a new line will leave a lot of unwanted spaces
 </textarea>

The RIGHT WAY to do it is:

 <textarea>text content //put text content right after your start tag, no new line
 </textarea>
William Hou
  • 1,251
  • 14
  • 17
  • Ok but why Laravel does not trim that white space? – Čamo Feb 01 '21 at 11:12
  • 1
    To Camo: The spaces are trimmed on some platforms but not on others. On some platforms, the old versions may not trim the spaces, while the new ones may do. Even within some of the same versions, it depends. When you have the problem, however, the above stated is one of the ways to solve it. – William Hou Feb 02 '21 at 14:02
  • I dont understand it. I have Laravel 8 and it is the same. I think trim() should be platform independent. – Čamo Feb 02 '21 at 17:58
  • 1
    Sorry Camo. It was over a year and a half ago, and I forgot the context of the problem. Anyway, if you have the problem, the above stated is one of the ways to solve it. – William Hou Feb 02 '21 at 18:38
  • @WilliamHou, yes whatever u suggested is worked for me, TQ – Prabha Jan 24 '22 at 07:05
9

Another work around would be to use javascript:

//jquery
$('textarea#someid').html($('textarea#someid').html().trim());

//without jquery
document.getElementById('someid').innerHTML = document.getElementById('someid').innerHTML.trim();

This is what I did. Removing white-spaces and line-breaks in the code makes the line too long.

Milad.Nozari
  • 2,243
  • 3
  • 26
  • 47
7

I know its late but may help others.

use this in when document indentation is required.

$(document).ready(function()
{
    $('textarea').each(function(){
            $(this).val($(this).val().trim());
        }
    );
});

same question

  • Or you could format your html correctly. But I do agree that can be hard something if you want something like php code inside of it. So I do agree with your answer. – Niels Lucas Jan 02 '19 at 08:56
5

To make it look a bit cleaner, consider using the ternary operator:

<textarea><?=( $siteLink_val ? $siteLink_val : '' );?></textarea>
Brian Lacy
  • 18,785
  • 10
  • 55
  • 73
  • 2
    Don't use short tags, don't suggest others to do so. This will help people avoid PITAs when putting some webapp in a production server with a different config. Thank you. – Alfabravo Feb 04 '10 at 20:53
  • 5
    I always use short tags in templating scenarios precisely because I want more people to use them, and thus encourage the PHP community to continue to support them. That said, short tags should ONLY be used in templating scenarios, NEVER in application logic, and quite obviously, ONLY when the server supports them. Always know your production environment before deploying. (Naturally, this is not the place to discuss the pros and cons of short tags, but you brought it up, so that's my justification.) – Brian Lacy Feb 05 '10 at 16:48
5

simply put all that on one-line

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php if($siteLink_val) echo $siteLink_val; ?></textarea>
Waad Mawlood
  • 727
  • 6
  • 10
4
<textarea style="width:350px; 
 height:80px;" cols="42" rows="5" name="sitelink"
 ><?php if($siteLink_val) echo $siteLink_val; ?></textarea> 

Moving ...> down works for me.

User707
  • 182
  • 2
  • 8
4

Just define your and your close tag in same line.

<textarea class="form-control"
          id="newText"
          rows="6"
          placeholder="Your placeholder here..."
          required
          name="newText"></textarea>
4

Please make sure there is no linebreak or space after , it's to make sure there is no whitespace or tab, just copy and paste this code :) I had fix it for you

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php if($siteLink_val) echo trim($siteLink_val);?></textarea>
2

Furthermore: the textarea tag shows spaces for new lines, tabs, etc, in multiline code.

Gal Margalit
  • 5,525
  • 6
  • 52
  • 56
2

keep textarea code with no additional white spaces inside

moreover if you see extra blank lines there is solution in meta language:

<textarea>
for line in lines:
echo line.replace('\n','\r')
endfor
</textarea>

it will print lines without additional blank lines of course it depends if your lines ending with '\n', '\r\n' or '' - please adapt

Sławomir Lenart
  • 7,543
  • 4
  • 45
  • 61
2

The text area shows mysterious spaces because there is a real space exists in the tags. <textarea> <php? echo $var; ?> </textarea> after removing these extra spaces between the tags will solve the issue , as following. <textarea><php? echo $var; ?></textarea>

Ashfaq Jan
  • 21
  • 4
2

One solution that has worked for me is adding the style white-space: normal; to the textarea because at times it is not feasible to eliminate all the whitespace (for example when you want your code to abide to your coding guidelines which requires adding tabs, whitespaces and line breaks)

Please note that the default for textarea, at least in chrome is: white-space: pre-wrap;

Taranjeet Singh
  • 159
  • 1
  • 10
2

If you still like to use indentation, do it after opening the <?php tag, like so:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php // <--- newline
    if($siteLink_val) echo $siteLink_val; // <--- indented, newline
?></textarea>
Kemal
  • 2,602
  • 1
  • 21
  • 14
1

I'm against HTML code mixed with PHP code.

However try this:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink">
<?php 
    if($siteLink_val) 
        echo trim($siteLink_val);
?> 
</textarea>
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
streetparade
  • 32,000
  • 37
  • 101
  • 123
0

Also, when you say that the cursor is in the "middle" of the textarea, it makes me think you could also either have extra padding or text-align: center defined somewhere in your CSS.

Brian Lacy
  • 18,785
  • 10
  • 55
  • 73
0

Make sure first that your $siteLink_val isn't returning white space as a value. The <textarea> element by default has an empty value so if the variable you're echo'ing for some reason has spaces, there's your problem right off the bat.

To make the code the absolute cleanest, I would suggest you could do something like this, allowing for some more flexibility later. I've made a function that returns either a NULL if the variable isn't present (what you seem to be aiming for in the original post) and the absolute value otherwise. Once you've made sure of your variable's contents, try this:

function build_siteLink_val() {
     if ( $siteLink_val ) {
          return $siteLink_val;
     }

     else {
          return "";
     }
}

$output_siteLink_val = build_siteLink_val();

And the following code in your textarea would now read:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?=$output_siteLink_val?></textarea>

This is assuming your PHP install is configured for short-hand variable calls, as seen in the shortened "<?=?>" tags. If you cannot output this way, remember to preface your PHP code with "<?php" and close with "?>".

Avoid line breaks between <textarea>'s because it can create the potential of erroneous characters.

Also, check your CSS to make sure there isn't a padding rule pushing text inward.

Also, you specify a cols and rows value on the textarea, and then style a width and height. These rules are counter-productive, and will result in inconsistent visuals. Stick with either defining the size through style (I recommend giving the element a class) or the rows/cols.

dmanexe
  • 1,034
  • 4
  • 16
  • 40
0

In addition to doing this:

Before:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink">
    <?php if($siteLink_val) echo $siteLink_val; ?> 
</textarea>

after:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php if($siteLink_val) echo $siteLink_val; ?></textarea>

I too added the method trim() of PHP:

<textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"><?php if($siteLink_val) echo trim($siteLink_val); ?></textarea>
Leffa
  • 369
  • 4
  • 7