Jump to content

ck editor 3.61 - i need to set language from english to arabic


Sajesh Mohan

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.