Please register with your real name and do not post any SPAM! Violations: "Hk.", "Getagrip", "therain", "learnandwatch" and "lolox" => deleted
0 Members and 1 Guest are viewing this topic.
<?php if(isset($_GET[template])) { $template = tmpl/ . $_GET[template]; } else { $template = tmpl/default.htm; } // if ordered then show php/html source if (php == $_GET[showsource]) { show_source($_SERVER[SCRIPT_FILENAME]); exit; } elseif (html == $_GET[showsource]) { show_source(dirname(__FILE__) . / . $template); exit; } require_once vlib/vlibTemplate.php; $tmpl = new vlibTemplate($template); $array_ergebnisse = array( array(platz => 1, mannschaft => Telekom Baskets Bonn, punkte => 4:0), array(platz => 2, mannschaft => ALBA BERLIN, punkte => 2:2), array(platz => 3, mannschaft => Bayer Giants Leverkusen, punkte => 0:4), ); $tmpl->setloop(ergebnisse, $array_ergebnisse); $tmpl->pparse();?>
<html> <head> <title>Tabelle - Detailinformationen</title> </head> <body> <a href="vlib_variable_template.php?template=kurztabelle.htm">show short result</a> <table frame="1" border="1"> <tr> <th align="left">Platz</th> <th align="left">Mannschaft</th> <th align="left">Punkte</th> </tr> <tmpl_loop name=ergebnisse> <tr> <td align="left"><b>{tmpl_var name=platz}</b></td> <td align="left">{tmpl_var name=mannschaft}</td> <td align="left">{tmpl_var name=punkte}</td> </tr> </tmpl_loop> </table> <p> <a href="vlib_variable_template.php?template=default.htm&showsource=php">show PHP code</a> | <a href="vlib_variable_template.php?template=default.htm&showsource=html">show template (HTML code)</a> </p> </body></html>
<html> <head> <title>Kurztabelle - Detailinformationen</title> </head> <body> <a href="vlib_variable_template.php?template=default.htm">show standard result</a> <table frame="1"> <tmpl_loop name=ergebnisse> <tr> <td align="left">{tmpl_var name=platz}.</td> <td align="left">{tmpl_var name=mannschaft}</td> </tr> </tmpl_loop> </table> </body> <p> <a href="vlib_variable_template.php?template=kurztabelle.htm&showsource=php">show PHP code</a> | <a href="vlib_variable_template.php?template=kurztabelle.htm&showsource=html">show template (HTML code)</a> </p></html>