Possible Duplicate:
foreach with three variables add
If I have 3 arrays of the same size, is it possible to use the costruct foreach() to cycle in the same time the 3 arrays?
ex.
$name contains names
$surname contains surnames
$address contains addresses.
Can foreach take elements [1], [2], [.....] in the same time, to print
$name[1], $surname[1], $address[1];
$name[2], $surname[2], $address[2];
and so on?