Viewing file: lanzamiento_web.php (1.53 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once('../dama/Connections/cndama.php'); ?>
<?php
mysql_select_db($database_cndama, $cndama);
$query_rsPlanta = "select id, Apellidos, Nombres from nueva_2006_planta order by Apellidos";
$rsPlanta = mysql_query($query_rsPlanta, $cndama) or die(mysql_error());
$row_rsPlanta = mysql_fetch_assoc($rsPlanta);
$totalRows_rsPlanta = mysql_num_rows($rsPlanta);
?>
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form name="form1" method="post" action="">
Confirmación de asistencia al relanzamiento de nuestra página
web, el próximo jueves 24 de agosto a las 10:00 a.m. en la sala
Oriol Rancel del Planetario Distrital.
<p></p>
<br>
<br>
<br>
<br>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="200">Nombre</td>
<td> </td>
</tr>
<tr>
<td width="200"> </td>
<td> </td>
</tr>
<tr>
<td width="200"> </td>
<td> </td>
</tr>
<tr>
<td width="200"> </td>
<td> </td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
<?php
mysql_free_result($rsPlanta);
?>
|