Hi andste72,
Please try the example below
<?php require_once "cuteeditor_files/include_CuteEditor.php" ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form id="form1" method="POST">
<?php
$editor=new CuteEditor();
$editor->Text="Type here";
$editor->ID="Editor1";
$editor->CustomCulture="de-DE";
$editor->Draw();
?>
</form>
</body>
</html>
Regards,
Ken