Jump to content

[SOLVED] Preserving &nbsp In A Textarea


phpQuestioner

Recommended Posts

how can a preserve a " " in a textarea if I am echoing it with php into the textarea? right now it is just echoing a blank space - like this " "

 

 

all of my other html displays as plain text; except this   - it is getting interpreted as a white space (like text/html, instead of text/plain).

Link to comment
https://forums.phpfreaks.com/topic/73172-solved-preserving-nbsp-in-a-textarea/
Share on other sites

monkeybidz - that still would not accomplish what I wanted to do; your not preserving the " " html character at all, you have just created spaces with your spacebar. also most browsers only interpret one empty space/whitespace, that is created with a spacebar; even if you create multiple spaces with your spacebar. i figured it out - but thanks for your help anyways.

 

<?php

$stringfromform = stripslashes($_POST['mytextstring']);

<textarea class="ta">
echo "&nbsp;$stringfromform";
</textarea>

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.