묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
IE6, firefox에 따라 다른 include 적용
2006.02.03 10:52
php에 대해 거의 알지를 못하여, 이렇게 질문을 합니다. 브라우져 별로 다른 명령어를 실행하고 싶습니다.
제로보드 skin에 htmlarea를 적용하고 있습니다. 다음은 write.php에 들어갈 내용입니다.
만약 firefox가 브라우져가 열린다면
<?php
include "/home1/ptmono/public_html/zboard/include/FCKeditor/fckeditor.php" ;
?>
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/zboard/include/FCKeditor/';
$oFCKeditor->Value = '';
$oFCKeditor->Create() ;
?>
을 실행하고 싶습니다.
그리고 IE6가 브라우져로서 페이지가 열린다면,
<?
include "$dir/include/edit.php";
include "$dir/include/edit_body.php";
?>
를 실행하고 싶습니다.
제로보드 skin에 htmlarea를 적용하고 있습니다. 다음은 write.php에 들어갈 내용입니다.
만약 firefox가 브라우져가 열린다면
<?php
include "/home1/ptmono/public_html/zboard/include/FCKeditor/fckeditor.php" ;
?>
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/zboard/include/FCKeditor/';
$oFCKeditor->Value = '';
$oFCKeditor->Create() ;
?>
을 실행하고 싶습니다.
그리고 IE6가 브라우져로서 페이지가 열린다면,
<?
include "$dir/include/edit.php";
include "$dir/include/edit_body.php";
?>
를 실행하고 싶습니다.
$browser_os = $HTTP_SERVER_VARS[HTTP_USER_AGENT];
$browser_os = explode(";", $browser_os);
$browser = $browser_os[1];
if($browser == "MSIE 6.0") {
IE6 브라우저라며
}
else {
아니라며
}
?>
부라우저 이름에따라...