Thank You! Previously our server is not PHP 5.. , Now we chnaged to PHP5.. . It's working. But i want to upload images, files etc through PHP editor.
Could you please send the sample code to do this>below is the code i am using
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text=$cont;
$editor->FilesPath="CuteEditor_Files";
$editor->ImageGalleryPath="../../upload";
$editor->FlashGalleryPath="../../upload";
$editor->MediaGalleryPath="../../upload";
$editor->FilesGalleryPath="../../upload";
$editor->CustomCulture="en-en";
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>