| CuteEditor for PHP 6.1 Class Library |
|
Editor.ConvertHTMLTagstoLowercase Property
By default CuteEditor converts all HTML tags of the finally generated content to lower case. You can turn this feature off by setting this property to false.
Example Code
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->FilesPath="CuteEditor_Files";
$editor->ConvertHTMLTagstoLowercase=false;
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>
See Also
Editor Class | CuteEditor Namespace