Displaying whitespace in HTML when pulling from MySQL TEXT column - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:05:54Zhttp://stackoverflow.com/feeds/question/155681http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155681/displaying-whitespace-in-html-when-pulling-from-mysql-text-column2Displaying whitespace in HTML when pulling from MySQL TEXT columnRyan Ische2008-10-01T00:12:20Z2008-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 &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#1556983Answer by Vincent for Displaying whitespace in HTML when pulling from MySQL TEXT columnVincent2008-10-01T00:20:32Z2008-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#1557071Answer by Wayne for Displaying whitespace in HTML when pulling from MySQL TEXT columnWayne2008-10-01T00:25:39Z2008-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 "&nbsp;" and changing newlines to <br />, using a <pre> 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#1557180Answer by Cade Roux for Displaying whitespace in HTML when pulling from MySQL TEXT columnCade Roux2008-10-01T00:32:12Z2008-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#1871502Answer by Ian Oxley for Displaying whitespace in HTML when pulling from MySQL TEXT columnIan Oxley2008-10-09T13:01:54Z2008-10-09T13:01:54Z<p>You could just use PHP's <a href="http://uk3.php.net/nl2br" rel="nofollow">nl2br function</a>.</p>