Hi GalaGalaxia,
I can reproduce it on the demo too. Please try the example page below, does it work on your end?
- <?php include_once("cuteeditor_files/include_CuteEditor.php") ; ?>
- <html>
- <head>
- <title>example</title>
- </head>
- <body>
- <form name="theForm">
-
- <?php
- $editor=new CuteEditor();
- $editor->ID="Editor1";
- $editor->ThemeType="Office2003";
- $editor->Draw();
- $editor=null;
-
- echo "<br /><br />";
-
- $editor=new CuteEditor();
- $editor->ID="Editor2";
- $editor->AutoConfigure="Simple";
- $editor->Draw();
- $editor=null;
- ?>
- </form>
- </body>
- </html>
Regards,
Ken