I'm affraid that doesn't do the trick.
I thought it over and I prob need to rephrase my question into:
Take a value in an Array and turn it into a variable.
How do you do that?
$SourceFieldListNoPrimary[0] = Item_Inventory_Description;
Now,. on the next page:
How do you retrieve $Item_Inventory_Description
and it needs to be dynamically. No hard coding of the
Item_Inventory_Description.
So I can't use:
$_POST['Inventory_Item_Description']
Basically I need a mechanism to have a variable that holds other variable names within it and the ability to access those variables.
I think it is similar to a struct() or something like that, but I've never done it.. so I could use some help here.
-Alon.