Пример #1
0
		    <td height="17">&nbsp;</td>
		    <td>&nbsp;</td>
	      </tr>
		  <tr>
		    <td colspan="2"><div align="center" class="cabecera_documento Estilo26">Filtros del Reporte </div></td>
	      </tr>
		  <tr>
		    <td height="18">&nbsp;</td>
		    <td>&nbsp;</td>
	      </tr>
		  <tr>
			<td width="118"><strong class="Estilo22">Nombre del &Aacute;rea </strong></td>
			<td width="318">
				<?php 
    $reporte = new Reporte();
    $areas = $reporte->obtener_areas();
    ?>
			
				<select name="area_rep">
					<option value="">---------- Seleccione un area --------</option>
				<?php 
    foreach ($areas as $area) {
        ?>
					<option value="<?php 
        echo $area["id"];
        ?>
"><?php 
        echo $area["area"];
        ?>
</option>
				<?php