Dear mmargeta,
Please try the following code:
<?php include_once("cuteeditor_files/include_CuteEditor.php") ; ?>
<html>
<head>
</head>
<body>
<form name="theForm" action="Get_HtmlContent.php" method="post">
<br />
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>";
$editor->ResizeMode = "PlusMinus";
$editor->Height=355;
$editor->AutoConfigure = "Simple";
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to retrieve the data
?>
</form>
</body>
</html>
Thank you for asking