summaryrefslogtreecommitdiff
path: root/demo/index.php
diff options
context:
space:
mode:
authorUwe.Tews@googlemail.com <Uwe.Tews@googlemail.com>2014-06-06 02:40:04 +0000
committerUwe.Tews@googlemail.com <Uwe.Tews@googlemail.com>2014-06-06 02:40:04 +0000
commit425091a19f674cb3e869493c8beb85ac96ed7d42 (patch)
treee4394a276e62eee3efb222d51cb5339f4db3793b /demo/index.php
parentca6a908c833d68908c79f48b4514ffd43be4b88d (diff)
downloadsmarty-425091a19f674cb3e869493c8beb85ac96ed7d42.tar.gz
smarty-425091a19f674cb3e869493c8beb85ac96ed7d42.tar.bz2
smarty-425091a19f674cb3e869493c8beb85ac96ed7d42.zip
- fixed spelling, PHPDoc , minor errors, code cleanup
Diffstat (limited to 'demo/index.php')
-rw-r--r--demo/index.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/demo/index.php b/demo/index.php
index b7d988f5..33f3035c 100644
--- a/demo/index.php
+++ b/demo/index.php
@@ -1,7 +1,7 @@
<?php
- /**
+/**
* Example Application
-
+ *
* @package Example-application
*/
@@ -14,17 +14,17 @@ $smarty->debugging = true;
$smarty->caching = true;
$smarty->cache_lifetime = 120;
-$smarty->assign("Name","Fred Irving Johnathan Bradley Peppergill",true);
-$smarty->assign("FirstName",array("John","Mary","James","Henry"));
-$smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
-$smarty->assign("Class",array(array("A","B","C","D"), array("E", "F", "G", "H"),
- array("I", "J", "K", "L"), array("M", "N", "O", "P")));
+$smarty->assign("Name", "Fred Irving Johnathan Bradley Peppergill", true);
+$smarty->assign("FirstName", array("John", "Mary", "James", "Henry"));
+$smarty->assign("LastName", array("Doe", "Smith", "Johnson", "Case"));
+$smarty->assign("Class", array(array("A", "B", "C", "D"), array("E", "F", "G", "H"),
+ array("I", "J", "K", "L"), array("M", "N", "O", "P")));
$smarty->assign("contacts", array(array("phone" => "1", "fax" => "2", "cell" => "3"),
- array("phone" => "555-4444", "fax" => "555-3333", "cell" => "760-1234")));
+ array("phone" => "555-4444", "fax" => "555-3333", "cell" => "760-1234")));
-$smarty->assign("option_values", array("NY","NE","KS","IA","OK","TX"));
-$smarty->assign("option_output", array("New York","Nebraska","Kansas","Iowa","Oklahoma","Texas"));
+$smarty->assign("option_values", array("NY", "NE", "KS", "IA", "OK", "TX"));
+$smarty->assign("option_output", array("New York", "Nebraska", "Kansas", "Iowa", "Oklahoma", "Texas"));
$smarty->assign("option_selected", "NE");
$smarty->display('index.tpl');