Advertisement
Lauda

Smarty php

Jan 23rd, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1. <?php
  2.  /**
  3.  * Example Application
  4.  
  5.  * @package Example-application
  6.  */
  7.  
  8. require('../libs/Smarty.class.php');
  9.  
  10. $smarty = new Smarty;
  11.  
  12.  
  13.  
  14. //$smarty->force_compile = true;
  15. $smarty->debugging = true;
  16. $smarty->caching = true;
  17. $smarty->cache_lifetime = 120;
  18.  
  19. $smarty->assign("Name","Fred Irving Johnathan Bradley Peppergill",true);
  20. $smarty->assign("FirstName",array("John","Mary","James","Henry"));
  21. $smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
  22. $smarty->assign("Class",array(array("A","B","C","D"), array("E", "F", "G", "H"),
  23.       array("I", "J", "K", "L"), array("M", "N", "O", "P")));
  24.  
  25. $smarty->assign("contacts", array(array("phone" => "1", "fax" => "2", "cell" => "3"),
  26.       array("phone" => "555-4444", "fax" => "555-3333", "cell" => "760-1234")));
  27.  
  28. $smarty->assign("option_values", array("NY","NE","KS","IA","OK","TX"));
  29. $smarty->assign("option_output", array("New York","Nebraska","Kansas","Iowa","Oklahoma","Texas"));
  30. $smarty->assign("option_selected", "NE");
  31.  
  32. $smarty->display('index.tpl');
  33. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement