Hi,
I have a form, which is created based on a search on a HD.
So I have arrays from the submit:
fname1[]
fname2[]
....
How would I go about calling each of these in the form to which the form is posted?
I was looking at using variable variables, but I really have no clue how to apply this, and the manual / previous posts are not really clear on this either.
I would like to be able to do something like:
for($i=0; $i<$size; $i++)
{
for($j=0; $j<$size2; $j++)
{
$file = $_POST[${fname$i}[$j]];
}
}
But this doesn't work.
Any suggestions?
J.