Jump to content

Recommended Posts

Hi

I would like to set up a php birthday reminder so that if users bdays are within the 7 days, it should display that the folllowing people celebrate their bday next week so far i have got to this stage, does any one have a better idea?

if(!empty($_POST)){

 

function birthday ($birthday){

 

list($year,$month,$day) = explode("-",$birthday);

$year_diff = date("Y") - $year;

$month_diff = date("m") - $month;

$day_diff = date("d") - $day;

 

if ($day_diff < 0 || $month_diff < 0)

$year_diff--;

return $year_diff;

 

}

Any ideas will be wolcomed on how I can complete the rest of this code! all I would like is to see which friends or users have their bday in the next 7 days and their age if possible!!

Link to comment
https://forums.phpfreaks.com/topic/144965-birthday-reminder/
Share on other sites

hai

 

the way you are doing may be not suitable for example if the DOB date is 01st of comming month  and if today date is 31 st then direct difference will be 30 , similar problems wil come so

 

use some calender functions or date/time available in php

please refer

http://in2.php.net/manual/en/datetime.diff.php

 

 

Link to comment
https://forums.phpfreaks.com/topic/144965-birthday-reminder/#findComment-761109
Share on other sites

<?php

$time = mktime(0, 0, 0, 12, 25, Date('y')) - time();

 

    echo  $days = floor($time/(60*60*24));

 

?>

 

this will give you the number of days sure

example DOB this year

12-25-2009

then

 

12 - month

25 - date

Date('y') - current year

 

 

Link to comment
https://forums.phpfreaks.com/topic/144965-birthday-reminder/#findComment-761121
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.