Hi folks !
I got several variables called C1,C2,C3...out of a form from another document. What I want to do is to construct a loop returning the content of the variable $C + the number I got from an index out of the loop.
$x=1
while ($x<50) {
$new='$C'.$x
$x++
};
This code returns only
$new=C1
$new=C2...
but I need the content of the variable Cx given from the form.
Any help????
THX