con objeto podria ser algo asi:
Código PHP:
$sql="SELECT id_agenda, ano_evento, fecha_inicio, fecha_fin, tipo_evento, titulo_evento, imagen, fecha, idioma
FROM agenda
WHERE fecha >= $fecha_hoy AND ano_evento=$ano_actual AND fecha_inicio LIKE '% OCTUBRE' AND idioma='Castellano'
GROUP BY fecha_inicio
ORDER BY fecha DESC";
$this->db->prepare ($sql);
$this->execute();