Home > Backend Development > PHP Tutorial > Examples of usage of smarty template conditional judgment in php, smarty template_PHP tutorial

Examples of usage of smarty template conditional judgment in php, smarty template_PHP tutorial

WBOY
Release: 2016-07-13 09:50:57
Original
770 people have browsed it

Examples of usage of smart template conditional judgment in php, smarty template

This article describes the usage of smart template conditional judgment in php. Share it with everyone for your reference. The specific implementation method is as follows:

Template file test6.html code:

<html> 
  <head> 
    <title>Smarty Test</title> 
  </head> 
 <body> 
 <table width="200" border="0"> 
   {if $cond == 1} 
   <tr> 
     <td>条件成立</td> 
   </tr> 
   {else} 
   <tr> 
     <td>条件不成立</td> 
   </tr> 
   {/if} 
 </table> 
 </body> 
</html>
Copy after login

php code:

<&#63;php 
require 'libs/Smarty.class.php'; //包含Smarty类库文件
$smarty = new Smarty; //创建一个新的Smarty对象 
$cond = 1; 
$smarty->assign("cond",$cond); //对模版中的变量赋值 
$smarty->display('test6.htm'); //显示页面 
&#63;>

Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1015431.htmlTechArticleExamples of conditional judgment usage of smarty template in php, smarty template This article describes the usage of smarty template conditional judgment in php. Share it with everyone for your reference. The specific implementation method is as follows: Module...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template