Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/06/2008, 20:15
Avatar de destor77
destor77
 
Fecha de Ingreso: noviembre-2004
Ubicación: Gálvez, Santa Fe, Argentina
Mensajes: 2.654
Antigüedad: 20 años, 2 meses
Puntos: 43
Respuesta: consulta mysql con poo

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();