채택완료

pc 버전으로 보기

2014-09-14 (일) 22:38:16 5,818

화면  제일 하단에  

Pc화면에선     (모바일화면  보기)

모바일에선      (pc화면  보기)

버튼이  없 습니다

만들고 싶어요

도와주세요

|

답변 1개

채택된 답변
+20 포인트
2014-09-15 (월) 10:21:23

pc화면에서

Copy
<?php$mobile_href = "";if(G5_USE_MOBILE && !G5_IS_MOBILE) {    $seq = 0;    $mobile_href = $_SERVER['PHP_SELF'];    if($_SERVER['QUERY_STRING']) {        $sep = '?';        foreach($_GET as $key=>$val) {            if($key == 'device')                continue;             $mobile_href .= $sep.$key.'='.strip_tags($val);            $sep = '&amp;';            $seq++;        }    }    if($seq)        $mobile_href .= '&amp;device=mobile';    else        $mobile_href .= '?device=mobile';}  ?><a href="<?php echo $mobile_href;?>" title="mobile 바로가기">모바일버전</a>

모바일에서는

Copy
<?php        if(G5_USE_MOBILE && G5_IS_MOBILE) {            $seq = 0;            $p = parse_url(G5_URL);            $href = $p['scheme'].'://'.$p['host'].$_SERVER['PHP_SELF'];            if($_SERVER['QUERY_STRING']) {                $sep = '?';                foreach($_GET as $key=>$val) {                    if($key == 'device')                        continue;                     $href .= $sep.$key.'='.$val;                    $sep = '&amp;';                    $seq++;                }            }            if($seq)                $href .= '&amp;device=pc';            else                $href .= '?device=pc';        ?>        <a href="<?php echo $href; ?>">PC버전</a>

답변을 작성하려면 로그인이 필요합니다.