TinyMCE displaying html tags after saving and reloading the data
See http://www.tinymce.com/wiki.php/Configuration:encoding
Seems like you need to comment encoding: 'xml'
on your configuration.
Add this under init
function:
tinyMCE.init( {
forced_root_block: false, // Start tinyMCE without any paragraph tag
} )