채택완료
제가 생성한 mobile.php 라는 파일에서 PC버전과 Mobile버전 어떻게 분기할 수 있나요??
제가 생성한 mobile.php라는 파일에서 PC버전과 Mobile버전으로 분기하고 싶은데 어떻게 해야 하나요?
PC 헤더 :
<?php
include_once("./header_mychild.php");
?>
PC 콘텐츠 :
<div class="tt_bg">
<div class="hcontainer tb_thum">
<p class="lxit ml30px">
<b>~~</b>가 <b>~~~~~~~</b><br>
<b>~~~~~~~</b>~~~~~~~~
</p>
</div>
<div class="clear"></div>
</div>
Mobile 헤더 :
<?php
include_once("./m_header_mychild.php");
?>
Mobile 콘텐츠 :
<div class="tt_bg">
<div class="hcontainer tb_thum">
<p class="lxit ml30px">
<b>~~</b>가 <b>~~~~~~~</b><br>
<b>~~~~~~~</b>~~~~~~~~
</p>
</div>
<div class="clear"></div>
</div>
답변 1개
채택된 답변
+20 포인트
와칸다포에버
2019-07-24 (수) 13:07:57
mobile.php에서
if (G5_IS_MOBILE) {
// 모바일
} else {
// PC
}
답변을 작성하려면 로그인이 필요합니다.