I am currently extracting my XHTML from a couple of fields in a database to make up the main content of the pages.
However when I echo it out all the <div>'s get bunched up together in the source code, and I'm sure this is why it gives me layout errors in Safari, and nothing else.
Is there any way to 'pad out' the spacing between parts of the HTML.
I'd tried using the '\n\n' and it worked on something else, but not this one sadly.
Using single quotes will echo precisely what you type (in this case, literally putting \n\n in to your HTML source code). Using double quotes will interpret the special characters (turning \n\n in to new lines, for example).
Bookmarks