Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/07/2010, 00:20
javiermao_
 
Fecha de Ingreso: enero-2010
Mensajes: 10
Antigüedad: 14 años, 3 meses
Puntos: 0
Ayuda con PHP mostrar datos de un formularios en otra pagina

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ÑORNOMBRE 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">&nbsp;</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">&nbsp;</th>
      <td>&nbsp;</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.