Muchas gracias
cacr y
hivs77!!! Seguramente la opción de hivs77 funciona :)
Igualmente, ya lo pude solucionar! Dejo la solución para los que la necesiten:
Código PHP:
$anio = date ('Y') - 21;
$mes = date ('m');
$dia = date ('d');
$date = $anio.'-'.$mes.'-'.$dia;
$newdate = strtotime ( '+3 month' , strtotime ( $date ) ) ;
$newdate = date ( 'Y-m-d' , $newdate );
$sql = "SELECT *
from tabla
where fecha_nacimiento > '$date' and fecha_nacimiento < '$newdate'
order by fecha_nacimiento ASC";
Gracias igual por sus prontas respuestas, un abrazo!