11.Nas_1


새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사


림스모바일 상단 메뉴 만들기 rimsoft mobile menu 추가 head.php

♨ 카랜더 일정 :
  • 링크

  • 첨부

  • 컨텐츠 정보

    본문

    <?
    \r\n
    // 이 파일은 새로운 파일 생성시 반드시 포함되어야 함
    \r\n
    if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 
    \r\n
    $g4['m_path']      = $g4['path'] . "/m"; 
    \r\n
    $begin_time = get_microtime();
    \r\n

    \r\n
    if (!$g4['title'])
    \r\n
        $g4['title'] = $config['cf_title'];
    \r\n

    \r\n
    // 쪽지를 받았나?
    \r\n
    if ($member['mb_memo_call']) {
    \r\n
        $mb = get_member($member[mb_memo_call], "mb_nick");
    \r\n
        sql_query(" update {$g4[member_table]} set mb_memo_call = '' where mb_id = '$member[mb_id]' ");
    \r\n

    \r\n
        alert($mb[mb_nick]."님으로부터 쪽지가 전달되었습니다.", $_SERVER[REQUEST_URI]);
    \r\n
    }
    \r\n

    \r\n

    \r\n
    // 현재 접속자
    \r\n
    //$lo_location = get_text($g4[title]);
    \r\n
    //$lo_location = $g4[title];
    \r\n
    // 게시판 제목에 ' 포함되면 오류 발생
    \r\n
    $lo_location = addslashes($g4['title']);
    \r\n
    if (!$lo_location)
    \r\n
        $lo_location = $_SERVER['REQUEST_URI'];
    \r\n
    //$lo_url = $g4[url] . $_SERVER['REQUEST_URI'];
    \r\n
    $lo_url = $_SERVER['REQUEST_URI'];
    \r\n
    if (strstr($lo_url, "/$g4[admin]/") || $is_admin == "super") $lo_url = "";
    \r\n

    \r\n
    // 자바스크립트에서 go(-1) 함수를 쓰면 폼값이 사라질때 해당 폼의 상단에 사용하면
    \r\n
    // 캐쉬의 내용을 가져옴. 완전한지는 검증되지 않음
    \r\n
    header("Content-Type: text/html; charset=$g4[charset]");
    \r\n
    $gmnow = gmdate("D, d M Y H:i:s") . " GMT";
    \r\n
    header("Expires: 0"); // rfc2616 - Section 14.21
    \r\n
    header("Last-Modified: " . $gmnow);
    \r\n
    header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
    \r\n
    header("Cache-Control: pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
    \r\n
    header("Pragma: no-cache"); // HTTP/1.0
    \r\n
    /*
    \r\n
    // 만료된 페이지로 사용하시는 경우
    \r\n
    header("Cache-Control: no-cache"); // HTTP/1.1
    \r\n
    header("Expires: 0"); // rfc2616 - Section 14.21
    \r\n
    header("Pragma: no-cache"); // HTTP/1.0
    \r\n
    */
    \r\n

    \r\n
    include_once("$g4[path]/lib/outlogin.lib.php");
    \r\n
    include_once("$g4[path]/lib/poll.lib.php");
    \r\n
    include_once("$g4[path]/lib/visit.lib.php");
    \r\n
    include_once("$g4[path]/lib/connect.lib.php");
    \r\n
    include_once("$g4[path]/lib/popular.lib.php");
    \r\n
    include_once("$g4[m_path]/lib/m.lib.php");
    \r\n

    \r\n
    if($bo_table) $board=sql_fetch("select * from $g4[board_table] where bo_table='$bo_table'");
    \r\n

    \r\n
    // 스킨경로
    \r\n
    $board_skin_path = '';
    \r\n
    if (isset($board['bo_skin']))
    \r\n
        $board_skin_path = "{$g4['path']}/skin/board/{$board['bo_skin']}"; // 게시판 스킨 경로
    \r\n
    ?>
    \r\n
    <!DOCTYPE html>
    \r\n
    <html lang="ko">
    \r\n
    <head>
    \r\n
    <title><?=$g4[title];?></title>
    \r\n
    <meta charset="<?=$g4['charset']?>">
    \r\n
    <meta name="viewport" content="width=device-width, initial-scale=1">
    \r\n
    <link rel="stylesheet" href="<?=$g4['m_path']?>/style.css" type="text/css">
    \r\n
    <link rel="stylesheet"  href="<?=$g4['m_path']?>/css/themes/default/jquery.mobile-1.1.1.css" />
    \r\n
    <link rel="stylesheet" href="<?=$g4['m_path']?>/docs/_assets/css/jqm-docs.css" />
    \r\n
    <script src="<?=$g4['m_path']?>/js/jquery.js"></script>
    \r\n
    <script src="<?=$g4['m_path']?>/docs/_assets/js/jqm-docs.js"></script>
    \r\n
    <script src="<?=$g4['m_path']?>/js/jquery.mobile-1.1.1.js"></script>
    \r\n
    <script type="text/javascript" src="<?=$g4['path']?>/js/rims.js"></script>
    \r\n
    <script type="text/javascript">
    \r\n
    // 자바스크립트에서 사용하는 전역변수 선언
    \r\n
    var g4_path      = "<?=$g4['path']?>";
    \r\n
    var g4_bbs       = "<?=$g4['bbs']?>";
    \r\n
    var g4_bbs_img   = "<?=$g4['bbs_img']?>";
    \r\n
    var g4_m   = "<?=$g4['m_path']?>";
    \r\n
    var g4_m   = "<?=$g4['m_path']?>";
    \r\n
    var g4_url       = "<?=$g4['url']?>";
    \r\n
    var g4_is_member = "<?=$is_member?>";
    \r\n
    var g4_is_admin  = "<?=$is_admin?>";
    \r\n
    var g4_bo_table  = "<?=isset($bo_table)?$bo_table:'';?>";
    \r\n
    var g4_sca       = "<?=isset($sca)?$sca:'';?>";
    \r\n
    var g4_charset   = "<?=$g4['charset']?>";
    \r\n
    var g4_cookie_domain = "<?=$g4['cookie_domain']?>";
    \r\n
    var g4_is_gecko  = navigator.userAgent.toLowerCase().indexOf("gecko") != -1;
    \r\n
    var g4_is_ie     = navigator.userAgent.toLowerCase().indexOf("msie") != -1;
    \r\n
    <? if ($is_admin) { echo "var g4_admin = '{$g4['admin']}';"; } ?>
    \r\n

    \r\n
    $(function(){
    \r\n
    $("a").attr({"rel":"external"});
    \r\n
    })
    \r\n
    </script>
    \r\n
    <script type="text/javascript" src="<?=$g4['path']?>/js/common.js"></script>
    \r\n
    </head>
    \r\n
    <body>
    \r\n

    \r\n
    <div data-role="page">
    \r\n
    <div data-role="header" data-theme="b">
    \r\n
    <?// 림스 모바일 로그 타이틀 수정 m/head.php?>
    \r\n
    <h1>Shims Mobile 홈피 </h1>
    \r\n
    <?// 림스 모바일 로그 타이틀 수정?>
    \r\n
    <a href="<?=$g4[m_path]?>/" data-icon="home" data-iconpos="notext" data-direction="reverse">Home</a>
    \r\n
    <a href="<?=$g4[m_path]?>/search.php" data-icon="search" data-iconpos="notext" data-rel="dialog" data-transition="fade">Search</a>
    \r\n
    </div>
    \r\n

    \r\n
    <!-- 림스모바일에 상단 시작 메뉴 추가 하기 m/head.php 제일 밑에 추가 
    \r\n
    <h3><?=$list[subject]?> <?if($wr_comment){?><span class="ui-li-count"><?=$wr_comment?></span><?}?></h3>
    \r\n
    -->
    \r\n

    \r\n
    <div data-role="header" data-theme="a">
    \r\n
    <div data-role="navbar">
    \r\n
    <ul>
    \r\n
    <li><a href="<?=$g4['m_path']?>/list.php?bo_table=z3_04" rel="external">1.폰메모</a></li>
    \r\n
    <li><a href="<?=$g4['m_path']?>/list.php?bo_table=z5_04" rel="external">2.심메모</a></li>
    \r\n
    <li><a href="<?=$g4['m_path']?>/login.php?url=%2Fmwb%2Fm%2F" rel="external">3.로그인</a></li>
    \r\n
    <li><a href="https://11q.kr/web" rel="external">4.PC제나빌드</a></li>
    \r\n
    </ul>
    \r\n
    </div>
    \r\n
    </div>
    \r\n
    <!-- 림스모바일에 상단 시작 메뉴 추가 하기 m/head.php 제일 밑에 추가 
    \r\n
    <h3><?=$list[subject]?> <?if($wr_comment){?><span class="ui-li-count"><?=$wr_comment?></span><?}?></h3>
    \r\n
    -->
    \r\n
    <?//게시판이면
    \r\n
    if($bo_table && !$w){?>
    \r\n
    <div data-role="header" data-position="inline" data-theme="c">
    \r\n
    <?//글 내용이면
    \r\n
    if($wr_id){?>
    \r\n
    <a href="javascript:;" onclick="history.back()" data-icon="arrow-l" iconpos="notext">뒤로</a>
    \r\n
    <?//리스트면
    \r\n
    }else{?>
    \r\n
    <a href="<?=$g4[m_path]?>/list.php?bo_table=<?=$bo_table?><?=$qstr?>" data-role="button" data-theme="c">목록</a>
    \r\n
    <?}?>
    \r\n
    <h1><?=$board[bo_subject]?></h1>
    \r\n
    <a href="<?=$g4[m_path]?>/write.php?bo_table=<?=$bo_table?>" data-icon="plus" data-theme="b">글쓰기</a>
    \r\n
    </div>
    \r\n
    <?}?>
    \r\n

    \r\n
    \r\n

    \r\n
    <div data-role="content">
    \r\n

    \n
    [이 게시물은 관리자님에 의해 2013-11-18 21:29:50 11.H_BBS에서 이동 됨]
    [ 추가 정보 ... 더보기) ]
    뷰PDF 1,2



    office view

    관련자료

    댓글목록

    등록된 댓글이 없습니다.

    목록

    새창 작성 수정 목록 링크 Edit G카랜다 HDD HDD HDD 게시물 주소 복사




    Total 1,684 / 84 Page
    [ 아미나 스킨 Basic-Board2_0_pdf_viewer_shimss 첨부된 pdf_show파일 viewe… ] 댓글 5

    먼저 감사 드립니다============아미나 스킨 Basic-Board2_0_pdf_viewer_첨부된 pdf_show파일 viewer/뷰어 …

    [ sn_nas_up2)osfmount 사용 헤놀로지 XPENOLOGY VMWARE ,,New SERIAL MA… ] 댓글 23

    펌) 헤놀로지 새로운 시리얼과 MAC주소 생성기(test전)https://11q.kr/g5s/bbs/board.php?bo_table=s11&a…

    [ 성공)MctvPlaylistCreator_to_tvhelper로png파일만들어_EPG채널이름지정하기및 201… ] 댓글 51

    MctvPlaylistCreator_to_tvhelper로png파일만들어_EPG채널이름지정하기아래 관련 파일 모두 저장 보관 합니다.MctvPl…

    [ 보안) bad 해킹 차단 ip 목록 리스트 14만건 badips 링크 자료와 저의 차단목록 deny-ip-l… ] 댓글 39

    공유기 외부 아이피 차단 < 지속적으로 공유기접속하고 있습니다 > 로그인 정기적으로 확인 차단 바랍니다차단 목록 첨부 20180513…

    [ XPEnoboot for DSM 5.2 DS3615xs 5.2-5967.1 x64: [pat] [img] [… ] 댓글 32

    정보)헤놀로지 5.2 - 5967 업데이트후 백업이 않되어 복원후 재가동 합니다주의) 필히 이전 버전 web 폴더및 mariadb 백업 바랍니다…

    [ 작업_성공) DSM 6.2_ds3615 jun's Loader 103b 설치 작업 ( 서버 ds918p … ] 댓글 31

    작업_성공) DSM 6.2_ds3615 jun's Loader 103b 설치 작업 ( 서버 ds918p to ds3615 변경 작업)주)하기와 …

    [ 성공)시놀로지 작업스케줄러로 xmltv.xml만들어 도커 epg2xml를 epg그래버모듈 tv_grab_정보… ] 댓글 34

    성공)시놀로지 작업스케줄러로 xmltv.xml만들어 도커 epg2xml를 epg그래버모듈 tv_grab_정보 갱신 3초 스피트하게 업데이트 하기…

    [ 보안 중요)XSS 공격 알림 ip차단 리스트 시놀로지 차단 목록 16만건20200502 정리164,756 등… ] 댓글 79

    보안 중요)XSS 공격 알림ip차단 리스트 시놀로지 차단 목록 16만건20200502 정리164,756 등록금일 2개 IP 추가 합니다● 17만…

    [ 설치방법)시놀로지 docker 로 tvheadend 기존 안정 버전으로 초간단히 명령어로 설치하기 ] 댓글 3

    설치방법)시놀로지 docker 로 tvheadend 기존 안정 버전으로 초간단히 명령어로 설치하기간단 명령어로 putty로 tvh 실행 설치하기…

    [ 사용기 성공 _ 추천_펌)iptv 채널 간단 서치 OMVS 대치 프로그램_MctvPlaylistCreator… ] 댓글 204

    결론)너무나 간편하게 채널 서치 합니다.해당 iptv의 ip를 알아 봅니다., skb-tv의 Port는 49220 입니다mabc는 239.192…

    [ 20180720_SK-BTV_4K_UHD_11q.kr.7z sk-btv.m3u 전체널 시청 점검 확인 저장… ] 댓글 173

    최종파일작업)20180729 iptv 채널 작업 인터넷 라디오 채널 추가 했습니다 /20180729_SKBTV_Radio_11q.kr_skbtv…

    [ ★★★추석 선물 3) 지상파 전국 채널 지역별 epg수신 가능하게 방송이름을 추가및 epg적용하기 모든것★★… ] 댓글 155

    추석 선물 3) 지상파 전국 채널 지역별 epg수신 가능하게 방송이름을 추가및 epg적용하기 모든것 정리 했습니다https://11q.kr/g5…


    ♥간단_메모글♥


    최근글


    새댓글



    PHP 안에 HTML ☞ 홈페이지 화면갱신 시간은 ♨
    ▶ 2024-07-05 17:12:57

    오늘의 홈 현황


    • 현재 접속자♨ 666 명
    • 오늘 가입자※ 3 명
    • 어제 가입자※ 8 명
    • 주간 가입자※ 17 명
    • 오늘 방문자 1,668 명
    • 어제 방문자 2,205 명
    • 최대 방문자 13,042 명
    • 전체 방문자 4,415,171 명
    • 전체 게시물※ 8,677 개
    • 전체 댓글수※ 24,837 개
    • 전체 회원수 11,092 명

    QR코드


    ☞ QR코드 스캔은 kakao앱 자체 QR코드

    알림 0








    최신글↑