if i have a tab in a <pre> TABHERE </pre> tag, and then store all the information inside of the <pre> tag in a database. when i attempt to display the stuff from the database would the tab still exist?
if i have a tab in a <pre> TABHERE </pre> tag, and then store
Share
Unless your database does something weird with tabs, it should return it exactly as you put it in. Then, html will display the tab as a tab as long as it is inside another
<pre>tag when you go to display it. If you have a tab character in your html source thats not in a<pre>tag (or other tag that preserves whitespace) then it will be rendered as a space.