11.07.2015 Views

PHP MySQL - Stilson.net

PHP MySQL - Stilson.net

PHP MySQL - Stilson.net

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

CHAPTER 19 • TEMPLATING WITH SMARTYwww.it-ebooks.info{if $month < 4}Summer is coming!{elseif $month ge 4 && $month assign("daysofweek", $daysofweek);$smarty->display("daysofweek.tpl");The daysofweek.tpl template contains the following:{foreach $daysofweek as $day}{$day}{/foreach}This returns the following:Mon.Tues.Weds.Thurs.Fri.Sat.Sun.You can also use the foreach loop to iterate through an associative array. Consider this example:$smarty = new Smarty;$states = array("OH" => "Ohio", "CA" => "California", "NY" => "New York");$smarty->assign("states", $states);$smarty->display("states.tpl");The states.tpl template contains the following:398

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!