Upon dumping my Postgres database and looking at the outputted queries data, here is how it should look:
<p>Persons Name started August 1, 2011. We will provide a courtesy account for Fall 2011 and Winter 2012. He will need to join an existing subscription or create a new one for Spring 2012.</p>
However from the point of the query being inserted into the text-area the output now looks like the following:
<p>Persons Name started August 1, 2011. We will provide a courtesy account for Fall 2011 and Winter 2012. He will need to join an existing subscription or create a new one for Spring 2012. </p>
<p>Added web site info.</p>
The non-breaking spaces (
) are being converted to Â
. This should not be happening. I am unsure of the cause behind this. Is this some kind of encoding issue?
Sidenote: TinyMCE is being used in another textarea in another spot in that same page. I've heard of conflicts with TinyMCE and textareas, so I thought it was worth noting this.
EDIT: I actually want the html tags to display as the tag itself. So <p>
should not become a paragraph, it should actually stay as that.
though should be converted to a space, not this weird character.
Edit2: The encoding character set used to be us-acsii, and that was the character set when these Database entries would have been saved via TinyMCE. It is now on UTF-8.
` tags. Is all of that inserted into a `
– musicnothing Jun 19 '13 at 18:05