crazy.works Posted July 23, 2008 Share Posted July 23, 2008 hello, i wanna use fckeditor in my php script so i want the source for the code to load the fckeditor with multi languages support like the sample on the like http://www.fckeditor.net/demo/language please . thanks Quote Link to comment Share on other sites More sharing options...
RichardRotterdam Posted July 23, 2008 Share Posted July 23, 2008 i used fckeditor a couple of times. I think its a matter of just walking throught the steps described on the site the language packs are included its more about what you dont need rather then what you need since it comes with everything Quote Link to comment Share on other sites More sharing options...
crazy.works Posted July 23, 2008 Author Share Posted July 23, 2008 i mean the code that i will put in the php file to load the editor with multi languages support so now here is my code , beside it isnot work , the textarea and the editor didnt appear too and i dont know why ------------------------------------------------------ <?php include_once("fckeditor/fckeditor.php") ; ?> <html > <head> <title>New Page 1</title> </head> <body> <form method="POST" action="submit.php"> <p> </p> <p> </p> <p><textarea rows="15" name="world" cols="56"></textarea></p> <p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p> <?php $oFCKeditor = new FCKeditor ("world") ; $oFCKeditor->BasePath = 'fckeditor/' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?> </form> </body> </html> ---------------------------------------------------------- so just can u send to me the correct code that i have to put in the php file to load the editor with multi languages support like the sample on that link http://www.fckeditor.net/demo/language please ???? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.