ho letto il file per installare fckeditor, ed alla fine il testo finisce così:
######## AFTER ADD ########
////
// Output a form textarea field w/ fckeditor
function tep_draw_fckeditor($name, $width, $height, $text) {
$oFCKeditor = new FCKeditor($name);
$oFCKeditor -> Width = $width;
$oFCKeditor -> Height = $height;
$oFCKeditor -> BasePath = '
http://www.yoursite.com/FCKeditor/';
$oFCKeditor -> Value = $text;
$field = $oFCKeditor->Create($name);
return $field;
}
###########################
<td><?php echo tep_draw_textarea_field('message', 'soft', '60', '15'); ?></td>
$nInfo->content
<td class="main"><?php echo tep_draw_fckeditor('content', '700', '300', $nInfo->content); ?></td>
questi ultimi due <td> dove li devo mettere?
il testo da incollare finisce dopo la serie di cancelletti giusto?