HTML encode user input when storing or when displaying - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T17:25:31Zhttp://stackoverflow.com/feeds/question/223480http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying8HTML encode user input when storing or when displayingMark S. Rasmussen2008-10-21T20:58:58Z2009-09-27T20:21:16Z
<p>Simple question that keeps bugging me.</p>
<p>Should I HTML encode user input right away and store the encoded contents in the database, or should I store the raw values and HTML encode when displaying?</p>
<p>Storing encoded data greatly reduces the risk of a developer forgetting to encode the data when it's being displayed. However, storing the encoded data will make datamining somewhat more cumbersome and it will take up a bit more space, even though that's usually a non-issue.</p>
http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223494#22349412Answer by Owen for HTML encode user input when storing or when displayingOwen2008-10-21T21:02:41Z2008-10-21T21:02:41Z<p>i'd strongly suggest encoding information on the way out. storing raw data in the database is useful if you wish to change the way it's viewed at a certain point. the flow should be something similar to:</p>
<pre><code>sanitize user input -> protect against sql injection -> db -> encode for display
</code></pre>
<p>think about a situation where you might want to display the information as an RSS feed instead. having to redo any HTML specific encoding before you re-display seems a bit silly. any development should always follow the "don't trust input" meme, whether that input is from a user or from the database.</p>
http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223499#2234991Answer by Craig Stuntz for HTML encode user input when storing or when displayingCraig Stuntz2008-10-21T21:03:33Z2008-10-21T21:03:33Z<p>Keep in mind that you may need to access the database with something that doesn't understand HTML encoded text (e.g., a reporting tool). I agree that space is a non-issue, but IMHO, putting HTML encoding in the database moves knowledge of your view/front end into the lowest tier in the application, and that is a design mistake.</p>
http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223509#2235093Answer by Andy Lester for HTML encode user input when storing or when displayingAndy Lester2008-10-21T21:07:21Z2008-10-21T21:07:21Z<p>The encoding should only only only be done in the display. Without exception.</p>
http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/223518#2235183Answer by porneL for HTML encode user input when storing or when displayingporneL2008-10-21T21:09:02Z2008-10-21T21:09:02Z<p><strong>Output.</strong> </p>
<p>With HTML you can't simply check length of a string (<code>&amp;</code> is 1 character, but <code>strlen()</code> will tell you 5), you can easily crop it (it could break entities).</p>
<p>You may need to mix strings from database with strings from another source, or read and write them back. Doing this application-wide without missing any escaping and avoiding double escaping is a nightmare.</p>
<p>PHP tried to do similar thing with <code>magic_quotes</code> and it turned out to be a huge failure. Don't take <code>magic_entities</code> route! :)</p>
http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying/1484370#14843700Answer by Cb for HTML encode user input when storing or when displayingCb2009-09-27T20:16:15Z2009-09-27T20:16:15Z<p>Doesn't this defeat the purpose of encoding? If a malicious sql script is entered as input, which is then passed to the db it could cause a huge problem.</p>