| CuteEditor for PHP 6.1 Class Library |
|
Editor.UseHTMLEntities Property
By default Cute Editor maps most special characters to the equivalent HTML entity automatically. You can turn it off by setting this property to "false".
This features is not supported yet.
Example Code
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->FilesPath="CuteEditor_Files";
$editor->UseHTMLEntities=false;
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>
See Also
Editor Class | CuteEditor Namespace