I'm using build 4629. The latest one.
I have to resort to using the popup editor where there is a "view page source" icon on the toolbar.
This will help you people developing the script, as it parses the html code right as I used it on my php script. There are three instances of the variable
$data or
$data["data"], on lines 5, 14 and 19. Replace it as what you use in your script.
include("FCKeditor/fckeditor.php"
;
include_once "FCKeditor/fckeditor.php";
$oFCKeditor = new FCKeditor('fcktext'
;
$oFCKeditor->BasePath = "FCKeditor/";
$oFCKeditor->Value = $data["data"];
$oFCKeditor->ToolbarSet = 'desbest';
$oFCKeditor->Width = 620;
$oFCKeditor->Height = 200;
echo $oFCKeditor->CreateHtml();
///////
$data = mysql_real_escape_string(trim($_POST['fcktext']));
//////////
$query = mysql_query("INSERT INTO strips (title, author, content,thumb,comment)
VALUES('$titlep','$logged[username]','$imgurlp','$thumburlp','$data'
"
;