humanista:
Primero lee esto
http://www.php.net/manual/es/functio...n-register.php
ahora, si como te señalo caricatos, con sesiones.
Código PHP:
Ver original<?php
if($_POST['enviar']){
$myciudad = $_POST['ciudad']
$_SESSION['ciudad'] = "$myciudad";
}
?>
Un tip, mientras yo desarrollo la aplicación hago lo siguiente, tengo una pequeña script, debug.php
Código PHP:
Ver original<?php
echo "\n\n\n<!-- variables \n";
echo "_SERVER\n";
foreach ($_SERVER as $indice=>$str){
$$indice = $str ;
echo "$indice = $str \n";
}
echo "_POST\n";
foreach ($_POST as $indice=>$str){
$$indice = $str ;
echo "$indice = $str \n";
}
echo "_GET\n";
foreach ($_GET as $indice=>$str){
$$indice = $str ;
echo "$indice = $str \n";
}
echo "_COOKIE\n";
foreach ($_COOKIE as $indice=>$str){
$$indice = $str ;
echo "$indice = $str \n";
}
echo "_SESSION\n";
foreach ($_SESSION as $indice=>$str){
$$indice = $str ;
echo "$indice = $str \n";
}
echo "-->";
?>
y debajo del cierre </html> de las páginas que quiero verificar hago un include() a debug.php, al ver el código fuente, como comentarios html vas a ver las variables activas y sus repectivos valores.
una demo
http://foros.emprear.com/php/debug/
Saludos