hello,
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
Wed, 07/23/2008 - 22:08
#1
hello,
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
Re: code source request , please
Re: code source request , please
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 ????