private function getTabela() {
		$retorno = "";
		
		$retorno .= "<h2 style=\"text-align:center\">{$this->titulo}</h2>";
		$retorno .= "<table width='1000' align='center' class=\"table\">  
           <thead  class=\"conteudo\">
      		<tr>  
            <th>Nome</td>
      		<th>Grupo</td>
      		<th>Ministério</td>
      		<th>Nascimento</td>  
           </tr>
      	</thead>";
		
		$resposta = aniversariantesDoMes ();
		//var_dump($resposta); die();
		foreach ( $resposta as $reg ) :
			$nome = $reg ['Pessoa'];
			$grupo = $reg ['Grupo'];
			$ministerio = $reg ['Ministerio'];
			$nascimento = date ( "d/m", strtotime ( $reg ['Dia'] ) );
			$retorno .= "<tr>";
			$retorno .= "<td>{$nome}</td>";
			$retorno .= "<td>{$grupo}</td>";
			$retorno .= "<td>{$ministerio}</td>";
			$retorno .= "<td>{$nascimento}</td>";
			$retorno .= "</tr>";
		endforeach
		;
		
		$retorno .= "</table>";
		return $retorno;
	}
<?php

session_start();
if (!isset($_SESSION['email'])) {
    header("Location: index.php");
    die;
}
include_once 'controller/bancoPessoa.php';
// include_once 'bootstrap.php';
$aniversariantes = aniversariantesDoMes();
switch (date("m")) {
    case "01":
        $mes = janeiro;
        break;
    case "02":
        $mes = fevereiro;
        break;
    case "03":
        $mes = março;
        break;
    case "04":
        $mes = abril;
        break;
    case "05":
        $mes = maio;
        break;
    case "06":
        $mes = junho;
        break;
    case "07":
        $mes = julho;