CuteEditor for PHP 6.1 Class Library

Editor Class

CuteEditor for PHP is a powerful, professional online web based WYSIWYG HTML editor that enables PHP developers to embed a word processor, similar to Microsoft Word into a web page. This Web-based WYSIWYG Content Editing tool empowers business users with an intuitive, easy-to-use interface for creating and publishing web content. This documentation should provide everything you need to customize the CuteEditor control for your particular application.

For a list of all members of this type, see Editor Members.

 

Remarks

Cute Editor for PHP supports all Internet Explorer versions from 5.5 up on Windows, Firefox 1.0+, Mozilla 1.3+, Netscape 7+, Opera 9.x and Safari (1.3+). This includes Macintosh and Linux.


Keep in mind that you don't need a supported browser to see HTML pages generated using Cute Editor for PHP, you just need a supported browser to edit with Cute Editor for PHP. If you attempt to use Cute Editor for PHP using a browser that is not supported Cute Editor for PHP will display a regular textarea. You will still be able to edit the document, but only in HTML code view.

Example


<?php
<?php include_once("CuteEditor_Files/include_CuteEditor.php") ; ?>
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->Draw();
         $editor=null; 

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

 

See Also

Editor Members | CuteEditor Namespace