Jump to content

next birthday date and age


brown2005

Recommended Posts

Simple: Check if the date has alredy passed this year, if not, say its 30/03 this year. Otherwise, 30/03 next year.

http://php.net/manual/en/function.date.php

The problem comes with leap year birthdays. Simply doing it that way without checking for a leap year birthday would ocasionally tell ya someone has a birthday on a day that doesnt exist!
[code=php:0]
<?php

$birthday_day = 30;
$birthday_month = 3;
$birthday_year = 1983;

$today_day = date("j");
$today_month = date("n");
$today_year = date("Y");
$next_year = date("Y") + 1;

$age = $today_year - $birthday_year;

if($today_month <= $birthday_month) {

if($today_month == $birthday_month) {

if($birthday_day > $today_day) {

$age--;

echo "Your next birthday is on ".$birthday_day." ".$birthday_month." ".$today_year."";

}

else {

echo "Your next birthday is on ".$birthday_day." ".$birthday_month." ".$next_year."";

}

}

else {

echo "Your next birthday is on ".$birthday_day." ".$birthday_month." ".$today_year."";

}

}

else {

echo "Your next birthday is on ".$birthday_day." ".$birthday_month." ".$next_year."";

}

$age++;

echo "You will be ".$age." on your next birthday...";

?>
[/code]
On a side note, if you enter the following underneath the "$birthday_" variables:

[code=php:0]
if(($birthday_day == 29) && ($birthday_month == 2)) {
$birthday_day = 28;
}
[/code]

This will change their birthday day to 28th Feb as you will find many people born on 29th Feb will celebrate their birthday on 28th Feb...

hth

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.