에디터에 함수쓰기
본문
에디터에 아래와 같은 함수를 넣고 싶은데요
<?php $roomNo = "motitle";?><? include(G5_PATH.'/inc_data.php'); ?>
<?=$ogtype?><br>
<?=$ogtitle?><br>
<?=$ogdescription?><br>
html 로 적용해서 쓰면
<!--?php $roomNo = "motitle";?--><!--? include(G5_PATH.'/inc_data.php'); ?-->
<!--?=$ogtype?--><br>
<!--?=$ogtitle?--><br>
<!--?=$ogdescription?--><br>
으로 변경되어 버리네요
에디터에서도 함수를 사용할수 있는 방법을 알고 싶습니다
답변 2
표시할 내용이 텍스트나 html 코드 같은거죠?
테스트는 안해봤지만, write.skin.php 상단에 아래 소스를 추가하는 꼼수가 있을 수 있겠습니다.
<?php
if(!$w) {
$roomNo = "motitle";
include(G5_PATH.'/inc_data.php');
$tmp_content = $ogtype.'<br>';
$tmp_content .= $ogtitle.'<br>';
$tmp_content .= $ogdescription.'<br></textarea>';
$editor_html = str_replace('</textarea>', $tmp_content, $editor_html);
}
?>
에디터에 함수를 사용할 수는 없습니다.
php변수 역시 불가능합니다.
이것이 허용된다면 보안에 치명적일 겁니다.