?> </a> <table class="table table-condensed table-hover table-striped table-bordered"> <thead> <tr class="cabecera"><th><?php echo $idioma['Fechas']; ?> </th><th><?php echo $idioma['CantidadTotal']; ?> </th></tr> </thead> <?php $titulos = array(); $cantidad = array(); foreach ($al->contarInscritoFechas() as $CantidadFechas) { array_push($titulos, "'" . utf8_encode(strftime("%A, %d de %B de %Y", strtotime($CantidadFechas['FechaIns']))) . "'"); array_push($cantidad, $CantidadFechas['CantidadFecha']); ?> <tr class="contenido"><td><?php echo utf8_encode(strftime("%A, %d de %B de %Y", strtotime($CantidadFechas['FechaIns']))); ?> </td><td><?php echo $CantidadFechas['CantidadFecha']; ?> <?php echo $idioma['Alumnos']; ?> </td></tr> <?php }