Viewing file: fur1.php (3.23 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Inscripción al proyecto piloto del FUR</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
input {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #666666;
}
select {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #666666;
background-color: #F2F2F2;
}
.unnamed1 {
font-family: "Times New Roman", Times, serif;
font-size: 12px;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="15%"> </td>
<td width="70%"> <p align="center"><img src="fur.gif" width="500" height="60"><br>
Inscripción a un proyecto piloto para la aplicación del
<strong>FUR</strong> en una muestra,<br>
de la Industria Manufacturera de la Ciudad de Bogotá.<br>
<font color="#FF0000" size="2">Registro de empresas inscritas en el piloto
del FUR</font></p>
<p align="center"> ----------------------------------------------------------------------------------------------------------</p>
<table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
<tr bgcolor="#CDDCFE" class="unnamed1">
<td width="30%">
<div align="center"><strong>Nombre</strong></div></td>
<td width="25%">
<div align="center"><strong>Dirección</strong></div></td>
<td width="5%">
<div align="center">Acti.</div></td>
<td width="5%">
<div align="center">Tipo</div></td>
<td width="5%">
<div align="center">Inter.</div></td>
<td width="20%" bgcolor="#FCF5C7">
<div align="center">Contacto</div></td>
<td width="10%">
<div align="center">Teléfono</div></td>
</tr><?php
require('conexion3.php');
$consul = "SELECT *
FROM fur_inscri";
$result = mysql_query($consul,$db);
$num_filas = mysql_num_rows($result);
while ($myrow = mysql_fetch_array($result))
{
$nombreee = $myrow["nombree"];
$direee= $myrow["diree"];
$actie = $myrow["acti"];
$tipoe = $myrow["tipo"];
$intere = $myrow["inter"];
$contactoe = $myrow["contacto"];
$telefonoe = $myrow["telefono"];
$faxe = $myrow["fax"];
$maile = $myrow["mail"];
echo "<tr bgcolor=\"#E4E4E4\" class=\"unnamed1\">
<td width=\"30%\">$nombreee</td>
<td width=\"25%\">$direee</td>
<td width=\"5%\">$actie</td>
<td width=\"5%\">$tipoe</td>
<td width=\"5%\">$intere</td>
<td width=\"20%\">$contactoe</td>
<td width=\"10%\">$telefonoe</td>
</tr>";
}
?>
</table>
<p align="center">----------------------------------------------------------------------------------------------------------</p>
<p align="left"> <font size="1">Sistema de Información Ambiental,
SIA-DAMA</font></p>
</td>
<td width="15%"> </td>
</tr>
</table>
<p class="unnamed1"> </p>
</body>
</html>
|