Viewing file: enlaces.php (3.46 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_cndama= "localhost";
$database_cndama = "dama";
$username_cndama = "jaime";
$password_cndama = "123";
$cndama = mysql_pconnect($hostname_cndama, $username_cndama, $password_cndama) or trigger_error(mysql_error(),E_USER_ERROR);
?>
<?php
$varcual_rsEnlaces = "0";
if (isset($varcual)) {
$varcual_rsEnlaces = (get_magic_quotes_gpc()) ? $varcual : addslashes($varcual);
}
mysql_select_db($database_cndama, $cndama);
$query_rsEnlaces = sprintf("SELECT * FROM nueva_2006_enlaces WHERE sitio=%s ORDER BY descripx", $varcual_rsEnlaces);
$rsEnlaces = mysql_query($query_rsEnlaces, $cndama) or die(mysql_error());
$row_rsEnlaces = mysql_fetch_assoc($rsEnlaces);
$totalRows_rsEnlaces = mysql_num_rows($rsEnlaces);
?>
<span class="capital">Enlaces WEB relacionados con el DAMA <br />
</span><br />
<table width="80%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="17%" class="txt"><div align="center"><a href="http://127.0.0.1/dama/libreria/php/decide.php?patron=01.0212&varcual=1">Enlaces Locales </a></div></td>
<td width="17%" class="txt"><div align="center"><a href="http://127.0.0.1/dama/libreria/php/decide.php?patron=01.0212&varcual=2">Enlaces Nacionales </a></div></td>
<td width="17%" class="txt"><div align="center"><a href="http://127.0.0.1/dama/libreria/php/decide.php?patron=01.0212&varcual=5">Programas de Naciones Unidas </a></div></td>
<td width="17%" class="txt"><div align="center"><a href="http://127.0.0.1/dama/libreria/php/decide.php?patron=01.0212&varcual=3">Agencias Gubernamentales Mundiales </a></div></td>
<td width="17%" class="txt"><div align="center"><a href="http://127.0.0.1/dama/libreria/php/decide.php?patron=01.0212&varcual=4">Agencias Gubernamentales Estadounidenses </a></div></td>
<td width="20%" class="txt"><div align="center"><a href="http://127.0.0.1/dama/libreria/php/decide.php?patron=01.0212&varcual=6">Otros sitios No Gubernamentales </a></div></td>
</tr>
</table>
<br />
<?php if ($totalRows_rsEnlaces > 0) { // Show if recordset not empty ?>
<span class="capital">ENLACES DE
<?php
if ($varcual==1) {
echo "Bogotá";
} elseif ($varcual==2) {
echo "Colombia";
} elseif ($varcual==3) {
echo "Agencias Gubernamentales Mundiales";
} elseif ($varcual==4) {
echo "Agencias Gubernamentales Estadounidenses";
} elseif ($varcual==5) {
echo "Programas de Naciones Unidas";
} else {
echo "Otros Sitios No Gubernamentales";
}
?>
</span><br />
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50">N°</td>
<td>Enlace</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="50" class="txt"><?php echo $row_rsEnlaces['id']; ?><br /></td>
<td class="txt"><a href="<?php echo $row_rsEnlaces['url']; ?>" target="_blank"><?php echo $row_rsEnlaces['descripx']; ?> </a>- Idioma<a href="<?php echo $row_rsEnlaces['url']; ?>" target="_blank">: </a><?php echo $row_rsEnlaces['E']; ?><a href="<?php echo $row_rsEnlaces['url']; ?>" target="_blank"><br />
<br />
</a></td>
</tr>
<?php } while ($row_rsEnlaces = mysql_fetch_assoc($rsEnlaces)); ?>
</table>
<?php } // Show if recordset not empty ?></body>
<?php
mysql_free_result($rsEnlaces);
?>
|