| Erich Beyrent 2004-03-19, 1:29 pm |
| Hi all,
I don't know why I have so much trouble with Smarty and arrays... Let's
assume I have the following data structure:
$EVENTS = array('event1' => array('dow' => "Saturday",
'month' => "March",
'day' => "13",
'year' => "2004",
'time' => "6:00 PM",
'title' => "St. Patrick's
Day Supper",
'location' => "Fellowship
Hall",
),
'event2' => array('dow' => "Saturday",
'month' => "March",
'day' => "27",
'year' => "2004",
'time' => "7:30 PM",
'title' => "Michael Nix
Concert",
'location' => "Sanctuary",
),
);
How would I loop through all of the events in my template?
I tried this:
// Loop through each event
{section name=i loop=$Events}
// Loop through the values for each event
{section name=j loop=$Events[i]}
{$Events[i][j].title}<br>
{/section}
Which didn't work. Tips? Suggestions? As always, thanks in advance!
-Erich-
|