initiate cute editor

  •  09-12-2008, 3:04 AM

    initiate cute editor

    hello,

    I just purchased a license for the Editor in PHP. I installed the directory with all the correspondig files in my root dir.
    this is the code I integrated in my PHP page
     

                    <TD>
                      <?php
                        $editor=new CuteEditor();
                        $editor->ID="Editor";
                        $editor->Text=$details;
                        $editor->FilesPath="CuteEditor_Files";
                        $editor->Draw();
                        $editor->AutoConfigure = "Simple";
                        $editor->Width="600px";
                        $editor=null;

                       //use $_POST["Editor"]to catch the data
                      ?>
                    </TD>

    $details = text uploaded from a database record.
     
    when uploaded, the page returns a blank section after <TD> and the rest of the HTML code is ommited
    what do I overlook, did I forget something ?
     
    best regards,
    Luc
View Complete Thread