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 require_once vlib/vlibTemplate.php; $tmpl = new vlibTemplate(tmpl/tmpl_if.htm); $boolean = (isset($_GET[if_condition])) ? 1 : 0; $tmpl->setvar(boolean, $boolean); $tmpl->setvar(if_condition, $_GET[if_condition]); $tmpl->pparse();?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html><head> <title>tmpl_if</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> body { font-family: Arial; font-size: 0.9em; color: <tmpl_if name=boolean>purple<tmpl_else>gray</tmpl_if>; } pre { color: black; font-size: 1.1em; } </style></head><body><p>This text is gray without "if_condition" set. Click <a href="tmpl_if.php?if_condition=1">here</a> tomake it purple. <tmpl_if name=if_condition op=> value=5><span style="color: green">"if_condition"is more than 5.</span><tmpl_else>"if_condition" is not set or below (equal to) 5.</tmpl_if></p><pre><p>This text is gray without "if_condition" set. Click <a href="tmpl_if.php?if_condition=1">here</a> to make it purple.<span style="color: red"><tmpl_if name=if_condition op=> value=5></span> <span style="color: green">"if_condition" is more than 5.</span><span style="color: red"><tmpl_else></span> "if_condition" is not set or below (equal to) 5.<span style="color: red"></tmpl_if></span></p></pre></body></html>