Calculator
Idaho
001
002
003
004
patTemplate Example
005 006
007
008
009
| Choose your superhero: |
010
011
022 |
023
024
025 026 027
01 readTemplatesFromFile( "myTemplate.tmpl" );
03
04 $defaultId = 19;
05
06 $query = "SELECT id, superhero FROM heroes ORDER BY superhero";
07 $result = mysql_query( $query );
08
09 $entries = array();
10 while( $row = mysql_fetch_array( $result, MYSQL_ASSOC ) )
11 {
12 // determine, wether entry should be selected by default
13 if( $row["id"] == $defaultId )
14 $row["selected"] = "yes";
15 else
16 $row["selected"] = "no";
17
18 // add the entry to all other entries
19 array_push( $entries, $row );
20 }
21 // add all entries to the drop down menu
22 $tmpl->addRows( "dropdown_entry", $entries );
23 // display the page
24 $tmpl->displayParsedTemplate( "page" );
25 ?>