The forum operates in read-only mode. Please head to StackOverflow for support.
>>>At the server side, FCKeditor offers a complete integration pack for: ASP.Net, ASP, ColdFusion, PHP, Java >>>And so, where PHP-connector...
oFCKeditor1.Value = '<?php echo $_POST['someVarHere']; ?>' ;
RE: Php Connector. Where find it?
Cow
RE: Php Connector. Where find it?
>>>
At the server side, FCKeditor offers a complete integration pack for: ASP.Net, ASP, ColdFusion, PHP, Java
>>>
And so, where PHP-connector...
RE: Php Connector. Where find it?
It's available?
RE: Php Connector. Where find it?
RE: Php Connector. Where find it?
just use for example
<script type="text/javascript">
<!--
var sBasePath = 'fckeditor/' ;
var oFCKeditor1 = new FCKeditor( 'someVarHere' ) ;
oFCKeditor1.BasePath = sBasePath ;
oFCKeditor1.ToolbarSet = 'Basic' ;
oFCKeditor1.Value = '<?php echo $_POST['someVarHere']; ?>' ;
oFCKeditor1.Create() ;
//-->
</script>