Viewing file: xindex.php (2.36 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once('../Connections/oa.php'); ?>
<?php
mysql_select_db($database_oa, $oa);
$query_rsnivel1 = "select * from nivel1 order by idnivel1";
$rsnivel1 = mysql_query($query_rsnivel1, $oa) or die(mysql_error());
$row_rsnivel1 = mysql_fetch_assoc($rsnivel1);
$totalRows_rsnivel1 = mysql_num_rows($rsnivel1);
?>
<html>
<head>
<title>Administración Observatorio Ambiental de Bogotá</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/adminestilos.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="600" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="titulos1"><p>Módulo de Administración del Observatorio
Ambiental de Bogotá.</p>
<p class="textoblanco"> </p></td>
</tr>
<tr>
<td><span class="titulos1">Categorías Principales del Observatorio:</span><br>
<br>
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr class="titulos1">
<td><div align="center">Nombre sección</div></td>
<td><div align="center">Tooltip</div></td>
<td><div align="center">Color 1</div></td>
<td><div align="center">Color 2</div></td>
<td> </td>
<td> </td>
</tr>
<?php do { ?>
<tr>
<td width="35%" class="texto"><?php echo $row_rsnivel1['nombre']; ?></td>
<td width="25%" class="texto"><?php echo $row_rsnivel1['tooltip']; ?></td>
<td width="5%" bgcolor=<?php echo $row_rsnivel1['colorbase']; ?> class="texto"><?php echo $row_rsnivel1['colorbase']; ?></td>
<td width="5%" bgcolor=<?php echo $row_rsnivel1['colordos']; ?> class="texto"><?php echo $row_rsnivel1['colordos']; ?></td>
<td width="15%" class="texto"><div align="center"><a href="files/nivel1.php?id=<?php echo $row_rsnivel1['idnivel1']; ?>">Modificar</a></div></td>
<td width="15%" class="texto"><div align="center">Ver
Contenidos</div></td>
</tr>
<?php } while ($row_rsnivel1 = mysql_fetch_assoc($rsnivel1)); ?>
</table>
</td>
</tr>
<tr>
<td><br>
<a href="edit_contenidos.php">Editar Contenidos</a></td>
</tr>
</table>
</body>
</html>
<?php
mysql_free_result($rsnivel1);
?>
|