Hi there,
I'm pulling information out of a table and displaying in a form. Some rows are displayed in standard input text boxes - no problem. However, I would like to be able to display some rows within the FCK Rich Text Editor.
Has anybody had any experience of doing this?
I'm hoping it's as simple as something along the lines of...
	Many thanks.
							
						
					I'm pulling information out of a table and displaying in a form. Some rows are displayed in standard input text boxes - no problem. However, I would like to be able to display some rows within the FCK Rich Text Editor.
Has anybody had any experience of doing this?
I'm hoping it's as simple as something along the lines of...
Code:
	<?php
$oFCKeditor = new FCKeditor('courseHeader') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->Value = echo $row['courseLinks'] ;
$oFCKeditor->Create() ;
?>
Comment