Jeg sidder med et fødselsdags-script, og har fødselsdatoerne liggende i MySQL, som jeg så vil hente ind, men den giver bare en helvedes problemer.
Scriptet:
$birthday = $birth;
$today = date('Y-m-d');
$a_birthday = explode('-', $birthday);
$a_today = explode('-', $today);
$day_birthday = $a_birthday[0];
$month_birthday = $a_birthday[1];
$year_birthday = $a_birthday[2];
$day_today = $a_today[0];
$month_today = $a_today[1];
$year_today = $a_today[2];
$age = $year_today - $year_birthday;
if (($month_today < $month_birthday) || ($month_today == $month_birthday && $day_today < $day_birthday))
{
$age--;
}
Jeg har inkluderet mine DB-oplysninger øverst i min PHP fil.
$birth er dén der skulle hente fødselsdatoen fra databasen.