Array
(
[PARAS] => Array
(
[PARA] => Array
(
[__multi] => 1
[0] => Array
(
[NOTE] => Here is my first note.
[TITLE] => Here is my first title.
)
[1] => Array
(
[NOTE] => Here is my second note.
[TITLE] => Here is my second title.
)
)
)
)I just want to loop through the array and output it as a table. It would look something like this:
<td>Here is my first note.</td><td>Here is my first title.</td> <td>Here is my second note.</td><td>Here is my second title.</td>
What incredibly easy way to do this am I just missing? Thanks! :)
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

