Hello,
in a form I have the following array:
These are made by this function:
and so on.
Now I would like to do a final page where the customer can check their entry, and I have to call for each recipient the arrays created.
I've tried somethig like {recipient[{$i}][name]}, but of course it doesn't work....
Coudl someone help me?
in a form I have the following array:
[recipient] => Array
(
[1] => Array
(
[name] => uytuyt
[cognome] => uytuy87
[gg_ospite] => 68
[mm_ospite] => 87
[yyyy_ospite] => 6876
[cittadinanza_ospite] =>
[residenza_ospite] => AG
[residenza_ospite_comune] => yutuotyt
)
[2] => Array
(
[name] => uytuyt
[cognome] => uytuy
[gg_ospite] => 78
[mm_ospite] => 87
[yyyy_ospite] => 8768
[cittadinanza_ospite] =>
[residenza_ospite] => AG
[residenza_ospite_comune] => uytuyotu
)
)
These are made by this function:
<input type='text' name='recipient[{$i}][name]' id='recipient_{$i}_name' />
and so on.
Now I would like to do a final page where the customer can check their entry, and I have to call for each recipient the arrays created.
I've tried somethig like {recipient[{$i}][name]}, but of course it doesn't work....
Coudl someone help me?