Hi all!
I just have one question.
When i want to change the editor start value then i change this:
But my question is how do i change the value using parameters and filename like this:
This code above doesnt work, any suggestions?
Please Help!
I just have one question.
When i want to change the editor start value then i change this:
$oFCKeditor->Value = "My value here";
But my question is how do i change the value using parameters and filename like this:
$handle = @fopen($_GET['openpage'], "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
echo $buffer;
}
$oFCKeditor->Value = fgets($handle, 4096);
fclose($handle);
This code above doesnt work, any suggestions?
Please Help!
