hello there,
what i am doing : im creating a code where in a table is selected in the first form, fields are selected in the second form, and then the Add record to the database screen is dynamically generated .
my problem
i have a variable in http_post_vars
which is dynamically created in the form submitted
lets say
i have following variables
Name Value
$variable 'USRENAME';
i create a temporary variable where in i put
$props 'Properties';
now when i write the statement
echo $variable.${props};
it gives USERNAMEProperties
now this is point where i get stuck
i wanna extract value of a $USERNAMEProperties
moral of the story
i wanna extract value of a variable whose name is dynamically generated
dips