close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Calculating someone's age by comparing DOB in a recordset with current date and display it in years and months?

Thread began 6/01/2016 2:32 pm by Nathon Jones Web Design | Last modified 7/05/2016 8:15 am by Ray Borduin | 1882 views | 16 replies |

Nathon Jones Web Design

Calculating someone's age by comparing DOB in a recordset with current date and display it in years and months?

Is this complicated? I've found some functions online but none of them use a recordset value, they assume a static value.

This, for example:

<?php
//date in mm/dd/yyyy format; or it can be in other formats as well
$birthDate = "12/17/1983";
//explode the date to get month, day and year
$birthDate = explode("/", $birthDate);
//get age from date or birthdate
$age = (date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md")
? ((date("Y") - $birthDate[2]) - 1)
: (date("Y") - $birthDate[2]));
echo "Age is:" . $age;
?>



I changed to this...

<?php
//date in mm/dd/yyyy format; or it can be in other formats as well
$birthDate = $rsPROFILE->getColumnVal("dogsdob");
//explode the date to get month, day and year
$birthDate = explode("/", $birthDate);
//get age from date or birthdate
$age = (date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md")
? ((date("Y") - $birthDate[2]) - 1)
: (date("Y") - $birthDate[2]));
echo $age;
?>



..but all it does is display "2016".

Could anyone point me in the direction of a decent function for this that can handle UK date formats?
Thank you.
NJ

Sign in to reply to this post

Ray BorduinWebAssist

<?php
$birthDate = strtotime("12/17/1983");
$ageInSeconds = time() - $birthDate;
$age = intval($ageInSeconds/(60*60*24*365));
?>

There is a small issue with leap years where it could be off by a few days depending on how many leap years have passed.

Sign in to reply to this post
Did this help? Tips are appreciated...

Nathon Jones Web Design

A few days is neither here nor there as it's for dogs.

I changed your wee function (it is called a function right?) to this:

<?php
$birthDate = strtotime($rsPROFILE->getColumnVal("dogsdob"));
$ageInSeconds = time() - $birthDate;
$age = intval($ageInSeconds/(60*60*24*365));
?>

...but the result is blank?
Is it possible to output the result as:
12 years 5 months

...obviously hiding years or months if either is 0.
Jeez...maybe more to this than I thought.

Thanks for the help.
NJ

Sign in to reply to this post

Ray BorduinWebAssist

php:
<?php

$birthDate 
strtotime($rsPROFILE->getColumnVal("dogsdob"));
$ageInSeconds time() - $birthDate;
$age intval($ageInSeconds/(60*60*24*365));
$months intval((($ageInSeconds/(60*60*24)) % 365)/12);
echo(
strval($age) . " years " $months " months");
?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Nathon Jones Web Design

I don't think that's dealing with UK date formats. See link below.
This particular record's dob, in the MySQL table, is 20/08/2011.
Thank you Ray.
NJ

Sign in to reply to this post

Ray BorduinWebAssist

Is it a varchar column in the database? php will assume european date format if you use dashes instead of slashes I think, so you may be able to use:

php:
<?php

$birthDate 
strtotime(str_replace("/","-",$rsPROFILE->getColumnVal("dogsdob")));
$ageInSeconds time() - $birthDate;
$age intval($ageInSeconds/(60*60*24*365));
$months intval((($ageInSeconds/(60*60*24)) % 365)/12);
echo(
strval($age) . " years " $months " months");
?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Nathon Jones Web Design

No, it's DATETIME.
There is no change with that revised code.

Sign in to reply to this post

Ray BorduinWebAssist

Use this code:

php:
<?php

$birthDate 
strtotime($rsPROFILE->getColumnVal("dogsdob"));
$ageInSeconds time() - $birthDate;
$age intval($ageInSeconds/(60*60*24*365));
$months intval((($ageInSeconds/(60*60*24)) % 365)/12);
echo(
"Birthdate: " $rsPROFILE->getColumnVal("dogsdob") . " age: " strval($age) . " years " $months " months");
?>



What does it display?

Sign in to reply to this post
Did this help? Tips are appreciated...

Nathon Jones Web Design

THAT code has a syntax error at line 6 I'm afraid.
I'm not clear why you've re-added the database value in line 6 either?

Sign in to reply to this post

Ray BorduinWebAssist

I've fixed the syntax error. I've written it to the page to see what the value is coming from the database so I can adjust the code if necessary.

Sign in to reply to this post
Did this help? Tips are appreciated...
loading

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...