Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/03/2006, 02:51
Avatar de jerkan
jerkan
 
Fecha de Ingreso: septiembre-2005
Mensajes: 1.607
Antigüedad: 18 años, 7 meses
Puntos: 19
Los podrias pasar por la url
Código PHP:
header("location: contactos.shtml?campo1=valor1&campo2=valor2"); 
o con variables de sesión.

session_start();

Código PHP:
$_SESSION['campo1'] = valor1;
$_SESSION['campo2'] = valor2;

header("location: contactos.shtml");