how to access editor and uploader values after form post

Hi,

I created a small webmailer with a form using the editor and also uploader for attachements.
I know how to access the data of the checkboxes etc. after using a form post, but how can i access data from uploader and editor? (file names and editor content)

I added a small $_REQUEST output to the webmailer to see what has been sent, but both uploader and editor don’t seem to send any data. btw. saving of the files is working.

Here is the complete code of the webmailer, all links are working and all the latest dhtmlx versions have been used:

[code]

<link rel="stylesheet" type="text/css" href="dhtmlxForm/codebase/skins/dhtmlxform_dhx_skyblue.css">
<link rel="stylesheet" type="text/css" href="dhtmlxEditor/codebase/skins/dhtmlxeditor_dhx_skyblue.css">

<script src="dhtmlxForm/codebase/dhtmlxcommon.js"></script>
<script src="dhtmlxEditor/codebase/dhtmlxeditor.js"></script>
<script src="dhtmlxForm/codebase/dhtmlxform.js"></script>
<script src="dhtmlxForm/codebase/ext/dhtmlxform_item_editor.js"></script>
<script src="dhtmlxForm/codebase/ext/dhtmlxform_item_upload.js"></script>
<script src="dhtmlxForm/codebase/ext/swfobject.js"></script>
<script>

var myForm, formData;

function doOnLoad() {
formData = [
{ type: “settings”, position: “label-right” },
{ type: “fieldset”, inputWidth:520, label:“Empfänger auswählen”, list:[
{ type: “radio” , name:“empfang”, label:“alle Teilnehmer”, value:“alle” },
{ type: “radio” , name:“empfang”, label:“bestimmte Gruppen”, checked:“1”, value:“teil”, list:[
{ type: “block”, list:[
{ type:“checkbox”, value:1, name:“kgl”, label:“Kleingruppenleiter”, labelWidth:180 },
{ type:“checkbox”, value:1, name:“jl”, label:“Jugendleiter” },
{ type:“checkbox”, value:1, name:“jm”, label:“Jugendmitarbeiter” },
{ type:“newcolumn”},
{ type:“checkbox”, value:1, name:“mq”, label:“Massenquartier” },
{ type:“checkbox”, value:1, name:“unterschrift”, label:“alle ab 18,
mit fehlender Unterschrift” },
{ type:“checkbox”, value:1, name:“test”, label:“Test” }
] }
]},
]},
{ type: “fieldset”, inputWidth:520, label:“E-Mail schreiben”, list:[
{ type:“editor” , name:“email”, inputWidth:460, inputHeight:350 }
]},
{ type: “fieldset”, inputWidth:520, label:“Anhang hinzufügen”, list:[
{type: “upload”, labelWidth:150,
name: “myFiles”, inputWidth: 330, url: “dhtmlxForm/codebase/dhtmlxform_item_upload.php”, _swfLogs: “enabled”, swfPath: “dhtmlxForm/codebase/ext/uploader.swf”, swfUrl: “dhtmlxForm/codebase/dhtmlxform_item_upload.php”}
]},
{ type: “block”, list:[
{ type: “button”, value: “Senden”, name: “senden” },{ type: “newcolumn” },{ type: “button”, value: “Vorschau”, name: “vorschau” }
]}
];
myForm = new dhtmlXForm(“myForm”, formData);
myForm.attachEvent(“onButtonClick”,function(id){
if(id==“senden”){
document.forms[0].submit()
}
if(id==“vorschau”){

}

})
}

<?php print_r($_REQUEST); ?>
[/code]

thanks in advance!
webmailer.rar (1.15 KB)