I'm using TinyMCE and want to execute a php script get the output and post the output.
I'm trying to insert my code with data pre-populated by a php script.
Birisi bana bu konuda yardımcı olabilir. Ben bir JavaScript acemi değilim ..
Bu veri olmadan tek örneklerini eklemek benim kodudur. (Kodun kalan belgeleri api üzerinde örnek düz)
///////////////////////////////////////////////////////////////////////////////
ed.addCommand('mceCommandHere', function() {
ed.execCommand('mceInsertContent',false,'[CODEHERE ="" URL ="" Title=""]');
});
ed.addButton('CommandHere', {
title : 'Add Subscriptions',
cmd : 'mceCommandHere',
image : url + '/PictureHere.png'
});
ed.onNodeChange.add(function(ed, cm, n) {
cm.setActive('CommandHere', n.nodeName == 'IMG');
});
///////////////////////////////////////////////////////////////////////////////