The CreateFCKeditor() function in PHP echoes the HTML but I'd like it to return it instead so I can add it to the output string. If I change "echo" to "return" it returns an object. I'm too new to OOP to know the proper way to do this.
Help?
TIA
Help?
TIA
RE: Returning string instead of echo (PHP)
$myVar = $oFCKeditor->ReturnFCKeditor( 'EditorBasic', 300, 80 ) ;
echo $myVar;