%PDF- %PDF-
Direktori : E:/nuevo/htdocs/svr-ciudadano/ |
Current File : E:/nuevo/htdocs/svr-ciudadano/index.php |
<?php require("class/anonimos.php"); include "header.php"; ?> <table id="ghatable" class="display table table-bordered table-stripe" cellspacing="0" width="100%"> <thead> <tr> <th>id</th> <th>Solicitud</th> <th>Respuesta</th> <th>FijaciĆ³n cartelera</th> <th>DesfijaciĆ³n cartelera</th> <th>Descargar</th> </tr> </thead> <tbody> <?php $objanonimos = new Anonimos(); $anonimos = $objanonimos->anonimos(); if(sizeof($anonimos) > 0){ foreach ($anonimos as $row){ ?> <tr> <td align="center"><?php echo $row['id'] ?></td> <td align="center"><?php echo $row['rad_entrada'] ?></td> <td align="center"><a href="<?php echo $row['ruta']?>"><?php echo $row['rad_salida'] ?></a> </td> <td align="center"><?php echo $row['fec_fijacion'] ?></td> <td align="center"><?php echo $row['fec_desfijacion'] ?></td> <td align="center"><a href="<?php echo $row['ruta']?>"><img src="images/pdf.png" alt="Pdf" title="Descargar" width="25" height="25" /></a></td> </tr> <?php } } ?> </tbody> </table> <?php include "footer.php"; ?>