Random PHP Code

Php code posted by Baylor Rae'
created at 05 Apr 23:03, updated at 08 Apr 10:39

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
<?php 
    $oFCKeditor = new FCKeditor('ArticleBody') ;
    $oFCKeditor->BasePath = "/js/FCKeditor/";
    $oFCKeditor->Width  = '600';
    $oFCKeditor->Height = '500';
    if($this->article->ArticleBody!=''){
        $oFCKeditor->Value = $this->article->ArticleBody;
    }else{
        $oFCKeditor->Value = '';
    }
    $oFCKeditor->Create(); 
    ?>
362 Bytes in 2 ms with coderay