新 게시물 날짜 수정하기 > 기술자료 | 해피정닷컴

新 게시물 날짜 수정하기 > 기술자료

본문 바로가기

사이트 내 전체검색

新 게시물 날짜 수정하기 > 기술자료

제로보드 新 게시물 날짜 수정하기

페이지 정보


본문


1. 제로보드4 / dbconfig.php 생성
<?php
$mysql_host = "디비서버주소";
$mysql_user = "디비아이디";
$mysql_password = "디비비밀번호";
$mysql_db = "디비이름";

$dbconn = mysql_connect($mysql_host,$mysql_user,$mysql_password) or die("데이터베이스 연결에 실패하였습니다.");
mysql_select_db($mysql_db,$dbconn);
//@mysql_query("set names euckr");   // 한글문제 생기면 주석 해제
?>


2. 제로보드4 / hp_date_edit_ok.php  파일 생성
<?php
include_once "./dbconfig.php";

$hpcheck = $_POST['hpcheck'];

if ($hpcheck=="Admin") { // 관리자 체크

    $id = $_POST['id'];
    $page = $_POST['page'];
    $sn1 = $_POST['sn1'];
    $divpage = $_POST['divpage'];
    $sn = $_POST['sn'];
    $ss = $_POST['ss'];
    $sc = $_POST['sc'];
    $select_arrange = $_POST['select_arrange'];
    $desc = $_POST['desc'];
    $no = $_POST['no'];
    
    // 변경 날짜 ( 2004-11-11 12:59:23 )
    $hp_date = $_POST['hp_date'];
    
    // 날짜 추출
    $year = substr($hp_date, 0, 4);
    $mon = substr($hp_date, 5, 2);
    $day = substr($hp_date, 8, 2);
    $hour = substr($hp_date, 11, 2);
    $min = substr($hp_date, 14, 2);
    $sec = substr($hp_date, 17, 2);
    
    // 변경 날짜를  1100145563 형식으로 변경하기
    $reg_date = mktime($hour, $min, $sec, $mon, $day, $year);
    
    $query = " update zetyx_board_". $id ." set reg_date = '". $reg_date ."' where no = '". $no ."' ";
    $result = mysql_query($query);
    
    if(!$result) die(mysql_error());
    mysql_close($dbconn);

    echo " <script>alert('날짜가 변경되었습니다.');  document.location.href='zboard.php?id=".$id."&page=".$page."&sn1=".$sn1."&divpage=".$divpage."&sn=".$sn."&ss=".$ss."&sc=".$sc."&select_arrange=".$select_arrange."&desc=".$desc."&no=".$no."'; </script>";
} else {
    echo " <script>document.location.href='./'; </script>";
}
?>


3. 제로보드4 / skin / 폴더 / view.php 에 내용 추가
<?php
//if ($_SERVER['REMOTE_ADDR'] == "내컴퓨터") {
    if($member[level] <= 1) {
        ?>
        <form name="hp_edit_date" method="post" action="hp_date_edit_ok.php">
            <input type="hidden" name="hpcheck" value="<?php if(isAdmin) { echo "Admin"; } ?>">
            <input type="hidden" name="id" value="<?php echo $id; ?>">
            <input type="hidden" name="page" value="<?php echo $page; ?>">
            <input type="hidden" name="sn1" value="<?php echo $sn1; ?>">
            <input type="hidden" name="divpage" value="<?php echo $divpage; ?>">
            <input type="hidden" name="sn" value="<?php echo $sn; ?>">
            <input type="hidden" name="ss" value="<?php echo $ss; ?>">
            <input type="hidden" name="sc" value="<?php echo $sc; ?>">
            <input type="hidden" name="select_arrange" value="<?php echo $select_arrange; ?>">
            <input type="hidden" name="desc" value="<?php echo $desc; ?>">
            <input type="hidden" name="no" value="<?php echo $no; ?>">
            <table style="width:99%; background-color:#FFC">
                <tr>
                    <td>
                        ※ 관리자일때만 보이는 화면입니다.<br> 
                        날짜수정 : <input name="hp_date" type="text" value="<?php echo $date; ?>">
                        <input type="submit" name="submit" value=" 날짜수정 ">
                        년(0000)-월(00)-일(00) 시(00):분(00):초(00) 규칙을 준수해주세요<br>
                    </td>
                </tr>
            </table>
        </form>
        <?php
    } else {
    }
//}
?>


4. 제로보드4 / zboard.php 내용중 
order by headnum,arrangenum
를 아래와 같이 변경 ( 2개 )
order by reg_date desc,headnum,arrangenum


5. 제로보드4 / outlogin.php  내용중
order by no desc
를 다음과 같이 변경 ( 2개 )
order by reg_date desc, no desc

댓글목록

등록된 댓글이 없습니다.


Total 32건 1 페이지
  • RSS
기술자료 목록
32
제로보드   7887  2019-09-17 14:13 ~ 2019-09-17 14:21  
31
제로보드   11147  2017-08-08 04:18 ~ 2017-08-08 00:00  
열람
제로보드   9016  2016-12-24 03:59  
29
제로보드   14736  2016-09-30 16:32 ~ 2022-04-15 19:45  
28
제로보드   18505  2010-03-09 21:40  
27
제로보드   14780  2009-03-24 19:31 ~ 2018-06-14 18:53  
26
제로보드   14768  2008-06-26 18:32  
25
제로보드   32868  2008-04-15 09:48  
24
제로보드   19174  2007-11-09 17:08  
23
제로보드   12553  2007-11-09 17:06  
22
제로보드   15983  2007-09-12 11:35 ~ 2007-05-09 00:00  
21
제로보드   15116  2007-04-27 14:13  
20
제로보드   19877  2007-04-23 16:53  
19
제로보드   15460  2007-02-03 17:38 ~ 2017-03-13 00:00  
18
제로보드   18355  2006-12-11 18:22  
17
제로보드   16539  2006-11-28 11:28  
16
제로보드   14085  2006-07-20 08:08  
15
제로보드   16496  2006-07-03 10:26  
14
제로보드   15250  2006-06-28 17:28  
13
제로보드   18282  2006-06-26 19:01  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.