묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
다중 홈페이지 뭐가 틀린건가요?
2015.12.12 09:50
<?
$domain= $_SERVER['HTTP_HOST'];
if($domain == 'www.abc.com' or $domain == 'abc.com')
{
?>
<body>
<iframe name="main" src=http://abc.com/index1.php frameborder="0" marginheight="0" marginwidth="0" scrolling="auto" width="100%" height="100%">
</body>
<?
}
else
{
?>
<body>
<iframe name="main" src="http://abc.com/index2.php" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto" width="100%" height="100%">
</iframe>
</body>
<?
}
?>
이렇게 했더니
이렇게 나오네요
조금만 도와주세요 ㅠㅠ
if 문에 or 라는 구문은 없습니다. or 는 || 로 사용하셔야 합니다.
(참고로 and 는 && 입니다 )