Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/05/2005, 09:54
Cluster
O_O
 
Fecha de Ingreso: enero-2002
Ubicación: Santiago - Chile
Mensajes: 34.417
Antigüedad: 22 años, 3 meses
Puntos: 129
Cita:
Iniciado por marcomartinez
Código PHP:
foreach($_GET as $key => $value){
$variable "\$".$key."='".$value."';"
eval(
$variable);

Código PHP:
foreach($_POST as $key => $value){
$variable "\$".$key."='".$value."';"
eval(
$variable);

Existe también la función:

extract()
www.php.net/extract

Un saludo,