Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/07/2007, 07:27
Avatar de mauled
mauled
 
Fecha de Ingreso: marzo-2005
Ubicación: Cd. de México.
Mensajes: 3.001
Antigüedad: 19 años, 11 meses
Puntos: 33
Re: Crear variable globales $_SESSION... ?

jeje prueba lo siguiente

Código PHP:
<?php 
$i 
1;
while (
$i 3)
{

$_SESSION["var_num_$i"] = $i ;

$i++;
}
echo 
$_SESSION["var_num_1"];
?>
A mi me funciono.

Saludillos.