템플릿 적용 후 사이트가 이상해졌어요.
페이지 정보
본문
댓글목록
제로님의 댓글
제로쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일
<P>인덱스 파일 수정을 안하고 올려버렸네요..<BR><BR>index.php<BR><BR><BR><?<BR>include_once("./_common.php");<BR>include_once("$g4[path]/lib/latest.lib.php");</P>
<P>$g4['title'] = "";<BR>include_once("./_mainhead.php");<BR>?><BR><!--INDEX--><BR> <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center"><BR> <tr><BR> <td width="400" align="center" valign="top"><BR> <?=latest_banner("banner_main", mainbanner, 1, 24); //MAIN BANNER?><BR> <? include_once("$g4[path]/include/auto_menu/auto_menu2.php"); // AUTO TAB MENU?><BR> <?= latest("colorbasic", z2_1, 3, 70)?><BR> </td><BR> <td width="10" align="center" valign="top"></td><BR> <td width="230" align="center" valign="top"><BR> <?= latest("noticebasic", z1_1, 3, 50)?><BR> <?= latest("colorbasic", z3_1, 3, 50)?><BR> </td><BR> </tr><BR> </table><BR><!--GUEST--><BR> <? include_once("$g4[path]/include/guest/guest.php");?><BR><!--/GUEST--><BR><!--/INDEX--><BR><?<BR>//http://www.sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=12426 - TOGETHER<BR>$birthday = date("md"); //오늘 날짜(월일)</P>
<P>if($config['cf_9'] != $birthday)<BR>{ //기본환경설정의 여분필드 9을 사용함.변경가능....</P>
<P> //회원테이블에서 오늘이 생일인 회원 목록 추출<BR> $sql = " select * from {$g4['member_table']} where substring(mb_birth,5,4) = '{$birthday}' ";<BR> $result = sql_query($sql);</P>
<P> for ($i=0; $row = sql_fetch_array($result); $i++)<BR> {<BR> $recv_id = $row['mb_id']; // 받는 사람 아이디<BR> $send_id = $config['cf_admin']; // 보내는 사람</P>
<P> $tmp_row = sql_fetch(" select max(me_id) as max_me_id from {$g4['memo_table']} ");<BR> $me_id = $tmp_row['max_me_id'] + 1;<BR> <BR> $send_msg = "{$row['mb_name']}님의 생일(생신)을 진심으로 축하 드립니다~~!";<BR> // 쪽지 INSERT<BR> $sql = " insert into {$g4['memo_table']}<BR> ( me_id, me_recv_mb_id, me_send_mb_id, me_send_datetime, me_memo )<BR> values ( '$me_id', '$recv_id', '$send_id', '$g4[time_ymdhis]', '$send_msg' ) ";<BR> sql_query($sql);</P>
<P> // 실시간 쪽지 알림 기능<BR> sql_query(" update {$g4['member_table']} set mb_memo_call = '{$send_id}' where mb_id = '{$recv_id}' ");<BR> <BR> }<BR> <BR> //여분필드9에 넣기 저 위에 바뀌면 요기도 바꾸는 것은 기본...^^<BR> sql_query(" update {$g4['config_table']} set cf_9 = '{$birthday}' ");<BR> <BR>}<BR>include_once("./_maintail.php");<BR>?><BR></P>