묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
[PHP] 음력생일자 축하 메세지
2003.06.18 01:50
유용한팁에서 생일자접속시 축하메세지 보여주기를 가져와 사용하고 있습니다.
근데 양력생일자만 해당되네요..
음력생일자의 경우도 적용되게 할수는 없나요?
회원가입시 양,음력을 따로 기입하게 하였거든요(lunar = 0 :양력, 1:음력)
아래는 생일축하 메세지 띄우기 입니다.(login_check.php에 넣어 사용하고 있습니다.)
//생일축하 메세지 띄우기
$today_log=time();
$que="select * from $member_table where user_id='$user_id'";
$fdata = mysql_fetch_array(mysql_query($que));
if(eregi(date("md",$fdata[birth]),date("md",$today_log))) {
echo "
<script language='javascript'>
<!--
function getCookie(name) {
var Found = false
var start, end
var i = 0
while(i <= document.cookie.length) {
start = i
end = start + name.length
if(document.cookie.substring(start, end) == name) {
Found = true
break
}
i++
}
if(Found == true) {
start = end + 1
end = document.cookie.indexOf(';', start)
if(end < start) end = document.cookie.length
return document.cookie.substring(start, end)
}
return ''
}
function openMsgBox() {
var eventCookie=getCookie('birthday');
if (eventCookie != 'no')
window.open('birth_msg.php','_blank','width=550,height=300,top=10,left=10'); // 창을 띄울 파일이름, 가로크기, 세로크기, 위세로위치, 가로위치
}
openMsgBox();
//-->
</SCRIPT> ";
}
근데 양력생일자만 해당되네요..
음력생일자의 경우도 적용되게 할수는 없나요?
회원가입시 양,음력을 따로 기입하게 하였거든요(lunar = 0 :양력, 1:음력)
아래는 생일축하 메세지 띄우기 입니다.(login_check.php에 넣어 사용하고 있습니다.)
//생일축하 메세지 띄우기
$today_log=time();
$que="select * from $member_table where user_id='$user_id'";
$fdata = mysql_fetch_array(mysql_query($que));
if(eregi(date("md",$fdata[birth]),date("md",$today_log))) {
echo "
<script language='javascript'>
<!--
function getCookie(name) {
var Found = false
var start, end
var i = 0
while(i <= document.cookie.length) {
start = i
end = start + name.length
if(document.cookie.substring(start, end) == name) {
Found = true
break
}
i++
}
if(Found == true) {
start = end + 1
end = document.cookie.indexOf(';', start)
if(end < start) end = document.cookie.length
return document.cookie.substring(start, end)
}
return ''
}
function openMsgBox() {
var eventCookie=getCookie('birthday');
if (eventCookie != 'no')
window.open('birth_msg.php','_blank','width=550,height=300,top=10,left=10'); // 창을 띄울 파일이름, 가로크기, 세로크기, 위세로위치, 가로위치
}
openMsgBox();
//-->
</SCRIPT> ";
}