Не спрашивайте зачем)
Нужно чтобы в tinymce вставлялись теги <?php и ?>
Ман, гугление и тп не помогло
Теги вырезаются автоматически при добавлении и становятся закомментированными
<!--?php xxxxxxx; ?-->
Это возможно? Да-нет-как
Что пробовал, инит
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "nonbreaking,paste",
// Theme options
theme_advanced_buttons1 : "styleselect, copy, bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,sub,sup,|,charmap,|,removeformat,nonbreaking,pagebreak,|,pastetext,pasteword,|,link,unlink,anchor,|,code,|,undo,redo",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
content_css : "/css/word.css",
verify_html : false,
valid_elements: "*[*]",
protect: [
/\<\/?(if|endif)\>/g, // Protect <if> & </endif>
/\<xsl\:[^>]+\>/g, // Protect <xsl:...>
/<\?php.*?\?>/g // Protect php code
]
});