2010-03-30 2 views
1

자습서 FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/silver/' ; 양식을 사용하여 스킨 경로를 변경할 수 없습니다. 아래에 나와있는 오류가 발생합니다. 이 문제를 어떻게 해결할 수 있습니까?PHP FCKeditor 스킨 경로 문제?

Parse error: syntax error, unexpected '=' 

다음은 FCKeditor PHP 코드입니다.

<?php 
$oFCKeditor = new FCKeditor('FCKeditor1') ; 
$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() ; 
?> 

다음은 스킨 코드가있는 FCKeditor입니다.

<?php 
$oFCKeditor = new FCKeditor('FCKeditor1') ; 
$oFCKeditor->BasePath = '../../fckeditor/' ; 
FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/silver/' ; 
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 
$oFCKeditor->Create() ; 
?> 

5 호는 제게 문제가됩니다.

+0

가 당신에게 구문 오류를주고있다 정확한 라인을? PHP는 대개 오류 메시지와 함께 줄 번호를 제공합니다. –

답변