frame 안에 include가 가능한가요? 정보
frame 안에 include가 가능한가요?본문
frame 안에 include를 하려고 합니다..
<?
include_once("./_common.php");
if ($_SERVER['HTTP_HOST'] == 'diamond-ever.net' || $_SERVER['HTTP_HOST'] == 'www.diamond-ever.net') {
include_once("index1.htm");
}
else if ($_SERVER['HTTP_HOST'] == 'tera.co1.kr' || $_SERVER['HTTP_HOST'] == 'www.tera.co1.kr') {
include_once("index2.htm");
}
else {
include_once("index.htm");
}
?>
이 걸 <frame src="index.htm"> 으로 되어있던 부분에 집어 넣으려고 하는데
프레임을 유지하면서 저걸 넣는게 가능할까요?
<?
include_once("./_common.php");
if ($_SERVER['HTTP_HOST'] == 'diamond-ever.net' || $_SERVER['HTTP_HOST'] == 'www.diamond-ever.net') {
include_once("index1.htm");
}
else if ($_SERVER['HTTP_HOST'] == 'tera.co1.kr' || $_SERVER['HTTP_HOST'] == 'www.tera.co1.kr') {
include_once("index2.htm");
}
else {
include_once("index.htm");
}
?>
이 걸 <frame src="index.htm"> 으로 되어있던 부분에 집어 넣으려고 하는데
프레임을 유지하면서 저걸 넣는게 가능할까요?
댓글 전체