Sajesh Mohan Posted August 11, 2011 Share Posted August 11, 2011 i downloaded fck editor 3.6.1. i need to type arabic . Ck editor have languange setting option . when i use this script toolbar also not showing please help me , how i solve this problem <?php // Include the CKEditor class. include_once "../ckeditor/ckeditor.php"; // Create a class instance. $CKEditor = new CKEditor(); // Path to the CKEditor directory. $CKEditor->basePath = '/ckeditor/'; // Set global configuration (used by every instance of CKEditor). $CKEditor->config['width'] = 600; // Change default textarea attributes. $CKEditor->textareaAttributes = array("cols" => 80, "rows" => 10); // The initial value to be displayed in the editor. $initialValue = 'This is some sample text.'; // Create the first instance. $CKEditor->editor("textarea_id", $initialValue); ?> thanks Quote Link to comment https://forums.phpfreaks.com/topic/244485-ck-editor-361-i-need-to-set-language-from-english-to-arabic/ 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.