 |
Smarty
The discussions here are for Smarty, a template engine for the PHP programming language. Dedicated server web hosting provided by Guru-host.eu. |
| View previous topic :: View next topic |
| Author |
Message |
camilord Smarty n00b
Joined: 04 Jun 2012 Posts: 2
|
Posted: Mon Jun 04, 2012 5:09 pm Post subject: iterate multidimensional array |
|
|
greetings...
i would like to know how i will iterate this array...
| Code: |
Array
(
[0] => Array
(
[city_name] => London
[city_url] => linkhere...
[schools] => Array
(
[0] => Array
(
[img_link] => oakdale-college-english-school.html
[img_path] => /img/thumbs2/kx front2.jpg
[school_name] => Oakdale College English School
[star_rating] => ReviewReviewReviewReviewReview
[price] => See price
)
[1] => Array
(
[img_link] => leicester-square-school-of-english.html
[img_path] => /img/thumbs2/leicestersq.jpg
[school_name] => Leicester Square School of English
[star_rating] => ReviewReviewReviewReviewReview
[price] => Courses from € 23.70
)
)
..............
[2] => Array
(
[city_name] => Orvieto
[city_url] => learn-italian/italy/orvieto/
[schools] => Array
(
[0] => Array
(
[img_link] => /oakdale-college-english-school.html
[img_path] => /img/thumbs2/kx front2.jpg
[school_name] => Oakdale College English School
[star_rating] => ReviewReviewReviewReviewReview
[price] => See price
)
[1] => Array
(
[img_link] => /leicester-square-school-of-english.html
[img_path] => /img/thumbs2/leicestersq.jpg
[school_name] => Leicester Square School of English
[star_rating] => ReviewReviewReviewReviewReview
[price] => Courses from € 23.70
)
................
|
as they said, smarty can't do nested... then how i will code this in a template?
please help..  |
|
| Back to top |
|
U.Tews Administrator
Joined: 22 Nov 2006 Posts: 4183 Location: Hamburg / Germany
|
Posted: Mon Jun 04, 2012 7:37 pm Post subject: |
|
|
Something like this
| Code: |
{foreach from=$array item=city}
{$city.city_name}
.....
{foreach from=$city.schools item=school}
{$school.school_name}
.....
{/foreach}
{/foreach}
|
|
|
| Back to top |
|
camilord Smarty n00b
Joined: 04 Jun 2012 Posts: 2
|
Posted: Mon Jun 04, 2012 9:05 pm Post subject: |
|
|
thank you U.Tews... helps a lot..  |
|
| Back to top |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|