Salve,
ho il seguente array al quale accedo con $this->data,
come devo fare per scorrere solo la parte dell'array che contiene [PlLinkNote]?
Codice PHP:
Array
(
[PlLink] => Array
(
[id] => 1
[active] => 1
[favorite] =>
[pl_link_categorie_id] => 1
[title] => Arduino
[url] => www.arduino.it
[username] =>
[password] =>
[user_id] => 3
[updated] => 2014-10-20 07:52:45
[created] => 2014-10-20 07:38:26
[expiry] => 2010-10-20
)
[PlLinkCategorie] => Array
(
[id] => 1
[active] => 1
[title] => Elettronica
[parent_id] =>
[lft] => 1
[rght] => 2
)
[PlLinkNote] => Array
(
[0] => Array
(
[id] => 1
[pl_link_id] => 1
[note] => prova
[updated] => 2014-10-20 07:44:00
[created] => 2014-10-20 07:44:00
)
[1] => Array
(
[id] => 2
[pl_link_id] => 1
[note] => test
[updated] => 2014-10-20 07:48:41
[created] => 2014-10-20 07:48:41
)
[2] => Array
(
[id] => 3
[pl_link_id] => 1
[note] => godo
[updated] => 2014-10-20 07:52:45
[created] => 2014-10-20 07:52:45
)
)
)