Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/01/2009, 11:19
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 10 meses
Puntos: 2
Pregunta Ventanas en la grabacion de datos

Hola a todos,
quisiera por favor me ayudaran a realizar esto:
1. tengo un sistema de registro:
datosconexion.htm
--------------------------
usuario: ........
password: .......
|siguiente|

datosgenerales.htm
----------------------------
datos personales:..........
ubicacion: .............
fecha de ingreso: .............
|registrar|
click a registrar y se dirija a agregarRegistro.php

2. el tema esta en que en la primera ventana (datosconexion.htm) el usuario registre sus datos de conexion, luego al DAR CLICK BOTON SIGUIENTE vaya a otra ventana (datosgenerales.htm) y registre los datos solicitados y AL DAR CLICK EN REGISTRAR, y TODOS LOS DATOS (de datos de conexion y los generales incluidos) sean ingresados en la bd:

Código php:
Ver original
  1. <!-- <?php
  2. include('conec.php');
  3. conectarse();
  4. //Preguntaremos si se han enviado ya las variables necesarias
  5. if(isset($_POST["username"]))
  6. {
  7.     $username=$_POST["username"];        ///DE CONEXION
  8.     $password=$_POST["password"];             ///de conexion
  9.     $cate=ucwords(strtolower($_POST["datos personales"])); ///DE GENERAL -->

Saludos y muchas gracias,