Viewing file: memorandos.php (2.21 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("analyticstracking.php");
?>
<table>
<caption>
<h5>MEMORANDOS</h5></caption>
<thead>
<tr bgcolor="#99B41E" class="odd">
<th scope="col" abbr="Home"><h5><span></span>Nombre</h5></th>
<th scope="col" abbr="Home"><h5><span></span>Título</h5></th>
<th scope="col" abbr="Home"><h5><span></span>Firma</h5></th>
<th scope="col" abbr="Home"><h5><span></span>Descargar</h5></th>
<th scope="col" abbr="Home"><h5><span></span>Tamaño</h5></th>
</tr>
</thead>
<tfoot>
<tr class="odd">
<td colspan="5" class="column1"> </td>
</tr>
</tfoot>
<tbody>
<tr>
<th scope="row" class="column1">Memorando 2012IE017270 del 3 de Febrero de 2012</th>
<td>Ley 1474 de 2011, Decreto 019 del 10 de Enero de 2012 y Ley 1437 de 2011</td>
<td>Francisco Javier Bernal Bernal</td>
<td><A href='circulares/2012IE017270.pdf' target=_blank><img src='images/pdf.gif' width='32' height='32' border='0' align="absmiddle" /></a></td>
<td><?php $size_pdf = size("circulares/2012IE017270.pdf");
$size_dir = size("./");
echo $size_pdf;
?>
</td>
</tr>
<tr class="odd">
<th scope="row" class="column1">Memorando 2011IE09584 del 31 de Enero de 2011</th>
<td>Lineamientos para preservar y fortalecer la transparencia y la prevención de la corrupción en las entidades y organismos del Distrito Capital</td>
<td>Samir José Abisambra Vesga</td>
<td><A href='circulares/2011IE09584.pdf' target=_blank><img src='images/pdf.gif' width='32' height='32' border='0' align="absmiddle" /></a></td>
<td><?php $size_pdf = size("circulares/2011IE09584.pdf");
$size_dir = size("./");
echo $size_pdf;
?>
</td>
</tr>
<tr >
<th scope="row" class="column1">Memorando 2009IE24690 del 14 de Diciembre de 2009</th>
<td>Circular instructiva 066 de la Alcaldia Mayor de Bogota D.C</td>
<td>Samir José Abisambra Vesga</td>
<td><A
href='circulares/2009IE24690.pdf'
target=_blank><img src='images/pdf.gif' width='32' height='32' border='0' align="absmiddle" /></a></td>
<td><?php $size_pdf = size("circulares/2009IE24690.pdf");
$size_dir = size("./");
echo $size_pdf;
?></td>
</tr>
</tbody>
</table>
|