CuteEditor for PHP 6.6 Class Library

Editor.EditorBodyId Property

Specifies an Id name that will be added to the body of the editor document.


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->EditorBodyId="MyBodyId";
         $editor->Draw();
         $editor=null; 

         //use $_POST["Editor1"]to catch the data
?>

See Also

Editor Class | CuteEditor Namespace