here is what I think the code is for it.
Code
In the functions.php
$year=split [16]("-",$birth);
if($year[0]>=1970){
$time=getdate [17]();
$a=mktime [18](0,0,0,$time[month],$time[mday],$time[year]);
$b=mktime [19](0,0,0,$year[1],$year[2],$year[0]);
$age=($a-$b)/(60*60*24*365);
$age=intval [20]($age);
}
else $age=$thisyear-$year[0];
$year=split [16]("-",$birth);
if($year[0]>=1970){
$time=getdate [17]();
$a=mktime [18](0,0,0,$time[month],$time[mday],$time[year]);
$b=mktime [19](0,0,0,$year[1],$year[2],$year[0]);
$age=($a-$b)/(60*60*24*365);
$age=intval [20]($age);
}
else $age=$thisyear-$year[0];
Can someone look at index.php & functions.php these to files and see if there is a better way to search for matches by birth date.
I can send the 2 files to someone to look at thanks
Evan
Thanks