Viewing file: mapa.php (1.79 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once('Connections/oab.php'); ?>
<?php
mysql_select_db($database_oab, $oab);
$query_rsLocal = "select nombre, mapa_peq, mapa_grande from localidades order by nombre";
$rsLocal = mysql_query($query_rsLocal, $oab) or die(mysql_error());
$row_rsLocal = mysql_fetch_assoc($rsLocal);
$totalRows_rsLocal = mysql_num_rows($rsLocal);
?>
<html>
<head>
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="js/lightbox.js"></script>
<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
</head>
<body>
<p>Localidades del Distrito Capital (excepto Sumapáz)</p>
<table >
<tr>
<?php
$rsLocal_endRow = 0;
$rsLocal_columns = 4; // number of columns
$rsLocal_hloopRow1 = 0; // first row flag
do {
if($rsLocal_endRow == 0 && $rsLocal_hloopRow1++ != 0) echo "<tr>";
?>
<td><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> <a href="images/mapas/<?php echo $row_rsLocal['mapa_grande']; ?>" rel="lightbox[roadtrip]" title="Localidad de: <?php echo $row_rsLocal['nombre']; ?>">
<img src="images/mapas/<?php echo $row_rsLocal['mapa_peq']; ?>" width="132" height="180">
</a><br> <?php echo $row_rsLocal['nombre']; ?></td>
</tr>
</table></td>
<?php $rsLocal_endRow++;
if($rsLocal_endRow >= $rsLocal_columns) {
?>
</tr>
<?php
$rsLocal_endRow = 0;
}
} while ($row_rsLocal = mysql_fetch_assoc($rsLocal));
if($rsLocal_endRow != 0) {
while ($rsLocal_endRow < $rsLocal_columns) {
echo("<td> </td>");
$rsLocal_endRow++;
}
echo("</tr>");
}?>
</table>
</body>
</html>
<?php
mysql_free_result($rsLocal);
?>
|