Hi !
I've a file-upload-form with a dynamic range of file-fields. (From 1 to 10).
Now i want to ask for the datatype on the next page. But that doesn't work.
Example:
for ($x=1;$x<$count($cdcover);$x++) {
echo $x.":".$cdcover[$x]_type."<br>";
}
That doesn't work.
for ($x=1;$x<$count($cdcover);$x++) {
$cd = $cdcover[$x];
echo $x.":".$cd_type."<br>";
}
This also. ;o(
Then I've tried this, but it also doesn't work.
Form-field names: cd1, cd2, cd3 and so on..
Next page:
for ($x=1;$x<$anzcds);$x++) {
$var = "cd".$x;
echo $x.":".$$var_type."<br>";
}
But no result. ;o(
Could anyone solve this problem ???