Hi all, firstly, congratulations for the script, it's awesome
Now, I uploaded it in my webspace but I'm lost on how to integrate it...I read the wiki and I pasted this
<?php include_once("mypath") ; ?> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form action="sampleposteddata.php" method="post" target="_blank"> <?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = my'path' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit"> </form> </body> </html>
Of course, I changed my path with my FCK path, and it's alright until there, but what do I have to write instead of FCKEditor1? And plus, how do I simply make that I can edit a file called 'blist.cfg'? Thanks in advance.