I have variables being passed to me via a Post operation.
They have names like: $data_XX
Where XX are contents of an array of known size.
ie:
$array=(12, 43, 23, 22);
$data_12 = "some content"
$data_43= "some other content"
How can i write code to access these data_XX elements if the XX parts are known only at runtime?
I hope this makes sense.
Thank you for any help
Scott