include 사용 가이드
관리자 스킨(.php) 또는 Front(.html) 스킨 내 include 사용 가이드
Last updated
관리자 스킨(.php) 또는 Front(.html) 스킨 내 include 사용 가이드
Last updated
<?php
...
include($testPage);
?><?php
...
$this->getView()->setDefine('testPage', '{연결하고자 하는 파일 경로}');
?><?php
...
$this->getView()->setDefine(
'testPage',
$this->getPath() . '/goods/goods_register.php'
);
?>