Displaying whitespace in HTML when pulling from MySQL TEXT column - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:05:54Z http://stackoverflow.com/feeds/question/155681 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155681/displaying-whitespace-in-html-when-pulling-from-mysql-text-column 2 Displaying whitespace in HTML when pulling from MySQL TEXT column Ryan Ische 2008-10-01T00:12:20Z 2008-10-09T13:01:54Z <p>I have saved input from a textarea element to a TEXT column in MySQL. I'm using PHP to pull that data out of the database and want to display it in a p element while still showing the whitespace that the user entered (e.g. multiple spaces and newlines). I've tried a pre tag but it doesn't obey the width set in the containing div element. Other than creating a PHP function to convert spaces to &amp;nbsp and new lines to br tags, what are my options? I'd prefer a clean HTML/CSS solution, but any input is welcome! Thanks!</p> http://stackoverflow.com/questions/155681/displaying-whitespace-in-html-when-pulling-from-mysql-text-column/155698#155698 3 Answer by Vincent for Displaying whitespace in HTML when pulling from MySQL TEXT column Vincent 2008-10-01T00:20:32Z 2008-10-01T00:20:32Z <p>You can cause the text inside the <code>pre</code> to wrap by using the following CSS</p> <pre><code>pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } </code></pre> <p>Taken from <a href="http://users.tkk.fi/~tkarvine/pre-wrap-css3-mozilla-opera-ie.html" rel="nofollow">this site</a></p> <p>It's currently defined in CSS3 (which is not yet a finished standard) but most browsers seem to support it as per the comments.</p> http://stackoverflow.com/questions/155681/displaying-whitespace-in-html-when-pulling-from-mysql-text-column/155707#155707 1 Answer by Wayne for Displaying whitespace in HTML when pulling from MySQL TEXT column Wayne 2008-10-01T00:25:39Z 2008-10-01T00:25:39Z <p>You've got two competing requirements. You either want the content to fit within a certain area (ie: width: 300px), or you want to preserve the whitespace and newlines as the user entered them. You can't do both since one - by definition - interferes with the other.</p> <p>Since HTML isn't whitespace aware, your only options are changing multiple spaces to "&amp;nbsp;" and changing newlines to &lt;br />, using a &lt;pre&gt; tag, or specifying the css style "white-space: pre".</p> http://stackoverflow.com/questions/155681/displaying-whitespace-in-html-when-pulling-from-mysql-text-column/155718#155718 0 Answer by Cade Roux for Displaying whitespace in HTML when pulling from MySQL TEXT column Cade Roux 2008-10-01T00:32:12Z 2008-10-01T00:32:12Z <p>Regarding the problem with the div, you can always make it scroll, or adjust the font down (this is even possible dynamically based on length of longest line in your server-side code).</p> http://stackoverflow.com/questions/155681/displaying-whitespace-in-html-when-pulling-from-mysql-text-column/187150#187150 2 Answer by Ian Oxley for Displaying whitespace in HTML when pulling from MySQL TEXT column Ian Oxley 2008-10-09T13:01:54Z 2008-10-09T13:01:54Z <p>You could just use PHP's <a href="http://uk3.php.net/nl2br" rel="nofollow">nl2br function</a>.</p>