I would like to fill up some arrays taking the values from another
array in this way:
these are the arrays:
$name
$surname
$age
$country
$job
$notes
and this is the array:
$allvalues
I would like to do this simple thing:
$name[0] = $allvalues[0]
$surname[0] = $allvalues[1]
...
$name[1] = $allvalues[6]
...
I try with "list" but it does not support arrays.
Thanx
Woody