1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 |
Foreach #1
foreach ($data as $invoices) {
foreach ($invoices as $invoiceDetail) {
foreach ($invoiceDetail as $record) {
echo $record . '<br />';
}
}
}
output #1 here -> http://awesomescreenshot.com/0f93xqe5f
Foreach #2
foreach ($data as $invoices) {
foreach ($invoices as $invoiceDetail) {
foreach ($invoiceDetail as $record) {
foreach ($record as $fieldName => $fieldValue) {
echo $fieldName . ': ' . $fieldValue . '<br />';
}
}
}
}
output #2 http://awesomescreenshot.com/0783xr55a |
