Thank you again Mr. Admin.
OK. I searched the joomla forum, and found how to display JCE as part of my form. Here is the piece of code:
<?php
// parameters : areaname, content, hidden field, width, height, rows, cols
editorArea( 'editor1', "$row->misc1" , 'misc1', '100%;', '300', '75', '20' ) ; ?>
The editor window shows up (for registered users only). Now, the value of the editor's field, 'misc', is not emailed automatically. What is the best way to get this value emailed? I can actually see the value by using $_POST['misc1'], but what would be my next step for getting this value.
On another note, does anyone know how to get JCE displayed for guests? I tried changing the access level on the plugins, but this is not working.
T.I.A