http://featheryogastudio.com/editor.php ... asses.html
http://www.theirsite.com/somePartoftheirSite.html
<?php
$filename = $_GET['file'];
$file_array = file($filename);
$file_contents = implode('',$file_array);
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = '/fckeditor/';
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $file_contents ;
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '100%' ;
$oFCKeditor->Create() ;
?>

Re: fckeditor Value not reading HTML head
//create an instance of the editor $oFCKeditor = new FCKeditor('myEditor'); //set the FullPage attribute if I'm expecting to render a full HTML doc $oFCKeditor->Config['FullPage'] = true; //create the actual WYSIWYG $oFCKeditor->Create();Setting that attribute to true will tell the editor to take its contents and treat them as a full blown HTML document. Otherwise it assumes that you're just passing a snippet of HTML and will only use whatever is inside the <body> element.
Re: fckeditor Value not reading HTML head
where do i insert this code? in config file or my editor page?
Re: fckeditor Value not reading HTML head