%PDF- %PDF-
| Direktori : /home/tjamichg/portal.tjamich.gob.mx/infofi/modules/ley/ |
| Current File : /home/tjamichg/portal.tjamich.gob.mx/infofi/modules/ley/art.php |
<?php
require("conn.php");
if(isset($_GET['id_norm'])){
$idnorm = $_GET['id_norm'];
?>
<br />
<div class="content">
<div class="titulo">Normatividad > Artículos</div><br />
<div class="cfmenu">
<a href="index.php?token=<?php echo $_GET['token']; ?>&mod=nart&id_norm=<?php echo $_GET['id_norm']; ?>"><img src="images/plus.png" width="20" height="20" /> Agregar Nuevo Artículo</a>
</div>
<br />
<div>
<table class="tablas">
<tr>
<td class="ctab">Normatividad</td>
<td class="ctab">Artículo</td>
<td class="ctab">Texto</td>
<td class="ctab">Acciones</td>
</tr>
<?php
$sen = mysqli_query($db, "SELECT * FROM narticulos WHERE idley='$idnorm'");
while($fila = mysqli_fetch_array($sen)){
?>
<tr>
<td><?php echo $fila['2']; ?></td>
<td><?php echo $fila['3']; ?></td>
<td><?php echo $fila['4']; ?></td>
<td>
<div class="caja"><a href="index.php?token=<?php echo $_GET['token']; ?>&mod=inc&id_norm=<?php echo $fila['0']; ?>&nart=<?php echo $fila['3']; ?>"><img src="images/cog.png" width="20" height="20" /><span class="info">Configurar</span></a></div>
</td>
</tr>
<?php
}
?>
</table>
</div>
</div>
<br />
<?php
}
?>