[G4/G5] 회원 로그인후 글 작성시 이름과 이메일 입력해서 글저장 > 기술자료 | 해피정닷컴

[G4/G5] 회원 로그인후 글 작성시 이름과 이메일 입력해서 글저장 > 기술자료

본문 바로가기

사이트 내 전체검색

[G4/G5] 회원 로그인후 글 작성시 이름과 이메일 입력해서 글저장 > 기술자료

그누보드 [G4/G5] 회원 로그인후 글 작성시 이름과 이메일 입력해서 글저장

페이지 정보


본문

회원 로그인후 글작성(글쓰기)할때 이름과 이메일을 변경해서 글 게시하도록 하는 방법입니다
회원로그인하면 이름(글쓴이/작성자), 이메일은 회원정보의 것이 자동으로 삽입되는데, 그것을 회원 스스로 입력하도록 할 수 있습니다

1-1. 그누보드5.4 / skin / board / 스킨 / write.skin.php
[수정전]
        <?php if ($is_name) { ?>
            <label for="wr_name" class="sound_only">이름<strong>필수</strong></label>
            <input type="text" name="wr_name" value="<?php echo $name ?>" id="wr_name" required class="frm_input half_input required" placeholder="이름">
        <?php } ?>
    
        <?php if ($is_password) { ?>
            <label for="wr_password" class="sound_only">비밀번호<strong>필수</strong></label>
            <input type="password" name="wr_password" id="wr_password" <?php echo $password_required ?> class="frm_input half_input <?php echo $password_required ?>" placeholder="비밀번호">
        <?php } ?>
    
        <?php if ($is_email) { ?>
            <label for="wr_email" class="sound_only">이메일</label>
            <input type="text" name="wr_email" value="<?php echo $email ?>" id="wr_email" class="frm_input half_input email " placeholder="이메일">
        <?php } ?>
        
        <?php if ($is_homepage) { ?>
            <label for="wr_homepage" class="sound_only">홈페이지</label>
            <input type="text" name="wr_homepage" value="<?php echo $homepage ?>" id="wr_homepage" class="frm_input half_input" size="50" placeholder="홈페이지">
        <?php } ?>


[수정후]
        <?php //if ($is_name) { ?>
            <label for="wr_name" class="sound_only">이름<strong>필수</strong></label>
            <input type="text" name="wr_name" value="<?php echo $name; ?>" id="wr_name" required class="frm_input half_input required" placeholder="이름">
        <?php //} ?>
    
        <?php //if ($is_password) { ?>
            <label for="wr_password" class="sound_only">비밀번호<strong>필수</strong></label>
            <input type="password" name="wr_password" id="wr_password;" <?php echo $password_required; ?> class="frm_input half_input <?php echo $password_required; ?>" placeholder="비밀번호">
        <?php //} ?>
    
        <?php //if ($is_email) { ?>
            <label for="wr_email" class="sound_only">이메일</label>
            <input type="text" name="wr_email" value="<?php echo $email; ?>" id="wr_email" class="frm_input half_input email " placeholder="이메일">
        <?php //} ?>
    
        <?php //if ($is_homepage) { ?>
            <label for="wr_homepage" class="sound_only">홈페이지</label>
            <input type="text" name="wr_homepage" value="<?php echo $homepage; ?>" id="wr_homepage" class="frm_input half_input" size="50" placeholder="홈페이지">
        <?php //} ?>
    
        <?php if ($is_admin) { ?>
            <label for="wr_ip" class="sound_only">IP</label>
            <input type="text" name="wr_ip" value="<?php echo $write['wr_ip']; ?>" id="wr_ip" class="frm_input half_input" size="50" placeholder="IP">
        <?php } ?>


1-2. 그누보드4 / skin / board / 스킨 / write.skin.php
[수정전]
<? if ($is_name) { ?>
<tr>
    <td class=write_head>이 름</td>
    <td><input class='ed' maxlength=20 size=15 name=wr_name itemname="이름" required value="<?=$name?>"></td></tr>
<tr><td colspan=2 height=1 bgcolor=#e7e7e7></td></tr>
<? } ?>

<? if ($is_email) { ?>
<tr>
    <td class=write_head>이메일</td>
    <td><input class='ed' maxlength=100 size=50 name=wr_email email itemname="이메일" value="<?=$email?>"></td></tr>
<tr><td colspan=2 height=1 bgcolor=#e7e7e7></td></tr>
<? } ?>

<? if ($is_homepage) { ?>
<tr>
    <td class=write_head>홈페이지</td>
    <td><input class='ed' size=50 name=wr_homepage itemname="홈페이지" value="<?=$homepage?>"></td></tr>
<tr><td colspan=2 height=1 bgcolor=#e7e7e7></td></tr>
<? } ?>


[수정후]
<?php //if ($is_name) { ?>
<tr>
    <td class="write_head">이 름</td>
    <td><input class='ed' maxlength="20" size="15" name="wr_name" title="이름" required value="<?php echo $name; ?>"></td>
</tr>
<tr><td colspan="2" height="1" bgcolor="#e7e7e7">
</td></tr>
<?php //} ?>

<?php //if ($is_email) { ?>
<tr>
    <td class="write_head">이메일</td>
    <td><input class='ed' maxlength="100" size="50" name="wr_email" email itemname="이메일" value="<?php echo $email; ?>"></td></tr>
<tr><td colspan="2" height="1" bgcolor="#e7e7e7"></td></tr>
<?php //} ?>

<?php //if ($is_homepage) { ?>
<tr>
    <td class=write_head>홈페이지</td>
    <td><input class='ed' size="50" name="wr_homepage" itemname="홈페이지" value="<?php echo $homepage; ?>"></td></tr>
<tr><td colspan="2" height="1" bgcolor="#e7e7e7"></td></tr>
<?php //} ?>

<?php if($is_admin) { ?>
<tr>
    <td class="write_head" 아 이 피</td>
    <td><input class=ed size="20" name="wr_ip" itemname="아이피" required value="<?php echo $write['wr_ip']; ?>"></td></tr>
<tr><td colspan="2" height="1" bgcolor="#e7e7e7"></td></tr>
<?php } ?>


2. 그누보드 / skin / board / 스킨 / write_update.skin.php  수정 (파일이 없으면 생성하세요)
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 자신만의 코드를 넣어주세요.

// 작성자정보를 변경하기
if ($_POST['wr_name'] || $_POST['wr_password'] || $_POST['wr_homepage'] || $_POST['wr_email'] || $_POST['wr_ip']) {
    $sql_update_writer = " update `{$write_table}` set ";
    //if ($_POST['wr_password']) $sql_update_writer .= "wr_password = '{$_POST['wr_password']}' , ";
    if ($_POST['wr_homepage']) $sql_update_writer .= "wr_homepage = '{$_POST['wr_homepage']}' , ";
    if ($_POST['wr_email']) $sql_update_writer .= "wr_email = '{$_POST['wr_email']}' , ";
    if ($_POST['wr_ip']) $sql_update_writer .= "wr_ip = '{$_POST['wr_ip']}' ";
    $sql_update_writer .= "wr_name = '{$_POST['wr_name']}'  ";
    $sql_update_writer .= "where  wr_id = '{$wr_id}' ";
    sql_query($sql_update_writer);
}


참고자료
http://sir.co.kr/bbs/board.php?bo_table=g4_skin&wr_id=32457

댓글목록

등록된 댓글이 없습니다.


Total 459건 18 페이지
  • RSS
기술자료 목록
119
그누보드   12741  2011-06-08 21:30  
118
그누보드   12404  2011-02-09 06:28  
117
그누보드   13471  2010-12-31 07:09 ~ 2023-04-07 15:58  
116
그누보드   14867  2010-10-15 23:54  
115
그누보드   10556  2010-09-12 08:44  
114
그누보드   16199  2010-09-07 01:09 ~ 2019-04-25 08:59  
열람
그누보드   13529  2010-08-04 11:14 ~ 2024-02-26 15:09  
112
그누보드   11359  2010-08-04 10:37  
111
그누보드   20089  2010-08-03 00:55 ~ 2016-03-14 00:00  
110
그누보드   10145  2010-08-03 00:14  
109
그누보드   11445  2010-07-23 11:25  
108
그누보드   13199  2010-05-18 19:54  
107
그누보드   12481  2010-04-15 19:03  
106
그누보드   12715  2010-03-26 20:29  
105
그누보드   15069  2010-03-17 00:14 ~ 2017-02-24 00:00  
104
그누보드   11053  2010-03-12 20:56  
103
그누보드   14146  2010-03-12 20:39  
102
그누보드   11209  2010-03-12 19:14  
101
그누보드   12407  2010-03-12 16:51  
100
그누보드   11111  2009-11-21 16:32  

검색

해피정닷컴 정보

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

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