Viewing file: glosario.php (1.54 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php virtual('/dama/Connections/cndama.php'); ?>
<?php
mysql_select_db($database_cndama, $cndama);
$query_rsGlosario = "select * from nueva_2006_glosario where significado is not null order by SIGLA";
$rsGlosario = mysql_query($query_rsGlosario, $cndama) or die(mysql_error());
$row_rsGlosario = mysql_fetch_assoc($rsGlosario);
$totalRows_rsGlosario = mysql_num_rows($rsGlosario);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<link href="/dama/libreria/php/2006/estilos.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p>Glosario de Términos relacionados con el Medio Ambiente</p>
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="160" class="capital">Abreviatura</td>
<td class="capital">Significado</td>
</tr>
<?
$lista_colores=array('#CCE0EB','#FFFFFF');
$num_colores=2;
$indice=0;
?> <?php do { $color=$lista_colores[$indice % $num_colores]; $indice++;?>
<tr bgcolor=<? echo $color?>>
<td width="160" height="20" class="txt"><?php echo $row_rsGlosario['SIGLA']; ?></td>
<td height="20" class="txt"><?php echo $row_rsGlosario['SIGNIFICADO']; ?></td>
</tr>
<?php } while ($row_rsGlosario = mysql_fetch_assoc($rsGlosario)); ?>
</table>
<p> </p>
</body>
</html>
<?php
mysql_free_result($rsGlosario);
?>
|