I'd like to do something like:
$a = 1;
$b = 3;
$c = 5;
$array = array ($a, $b, $c);
// change the value of the variables in the array:
$array[1] = 25;
// in order to have $b = 25...
// this just changes the second element of the array, not the variable