I've been trying to echo html already created by the user (Using TinyMCE) into another page in the application. The problem I keep running into is the tags are echoed into their HTML equivalents (e.g. > instead of <) so they show up on the page instead of effecting the markup.
How do I get CakePHP to display the content as HTML instead of just echoing it?
escape => falseoption.echostatement in the view. I tried to find a relevant helper method, but I could not.