Hola amigos soy un poco nuevo trabajado con php, tengo un problema. Tengo una pagina que realiza una busqueda en la base de datos y me arroja los resultados en tablas. Quiero que los datos de la busqueda que salen en la primera pagina me dalgan en otra pagina para en la otra ponerle añadiduras de texto.
Ejemplo:
PAGINA 1
-----------
ESCRIBA EL NOMBRE DE X:PEDRO
DATOS ENCONTRADOS
EDAD DE X:15 AÑOS
CIUDAD:META
BARRIO:MINORTHA
BOTON (VER DATOS EN ACTA)
PAGINA 2=AQUI SE VEN LOS DATOS ANTERIORES PERO CON UN FORMATO
---------------------------------------------------------------------------------------------
EL SEÑOR
NOMBRE DE X CON UNA EDAD DE
15 AÑOS VIVE EN EL BARRIO
MINORTHA DE LA CIUDAD DE
META
LES ADJUNTO MI CODIGO
Código PHP:
<table width="468">
<tr>
<th scope="row"> </th>
</tr>
</table>
<table width="510" border="1" align="center">
<tr>
<td width="273" nowrap class="BLANCO" scope="row">Escriba el Nombre del Bautizado</td>
<td width="221"><input type="text" name="bautizado" id="bautizado">
<input type="submit" name="button" id="button" value="Enviar"></td>
</tr>
</table>
<table width="468">
<tr>
<th scope="row"> </th>
<td> </td>
</tr>
</table>
<table width="490" border="1" align="center">
<tr>
<th colspan="2" align="right" class="TITULOTABLA" scope="row">DATOS DEL BAUTIZADO</th>
</tr>
<tr>
<td width="260" align="right" nowrap class="BLANCO" scope="row">Nombre del Bautizado:</td>
<td class="TABIZQ"><?php echo $row_Recordset1['n_bautizado']; ?></td>
</tr>
<tr>
<td width="260" align="right" nowrap class="BLANCO" scope="row">Fecha de Nacimiento:</td>
<td class="TABIZQ"><?php echo $row_Recordset1['f_nacimiento']; ?></td>
</tr>
<tr>
<td width="260" align="right" nowrap class="BLANCO" scope="row">Sexo:</td>
<td class="TABIZQ"><?php echo $row_Recordset1['Sexo']; ?></td>
</tr>
<tr>
<td width="260" align="right" nowrap class="BLANCO" scope="row">Lugar de Naciminto:</td>
<td class="TABIZQ"><?php echo $row_Recordset1['l_nacimiento']; ?></td>
</tr>
<tr>
<td width="260" align="right" nowrap class="BLANCO" scope="row">Filiacion:</td>
<td class="TABIZQ"><?php echo $row_Recordset1['filiacion']; ?></td>
</tr>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>
Desde ahora MUCHAS GRACIAS POR COLABORARME.