Application of Smarty

Source: Internet
Author: User

Smarty application, first create a PHP file
<?php

Error_reporting (E_all & ~e_deprecated);//Avoid outdated problems
Include_once (' mypdo.php ');//Read the file of your own encapsulated connection database
Header (' Content-type:text/html;charset=utf-8 ');
$mypdo = new Mypdo ();
$sql = "SELECT * from book WHERE id =?"; /sql statements

$booklist = $mypdo->pdoprepare ($sql, Array ($_get[' id '));


$mypdo = null;//Close the database
Include_once ("libs/smarty.class.php"); Contains the Smarty class file

$smarty = new Smarty (); Establish the Smarty instance object $smarty

$smarty->caching=false; Whether to use caching, the project is not recommended to enable caching during debugging

$smarty->template_dir = "./templates"; Set up a template directory

$smarty->compile_dir = "./templates_c"; Set compilation directory

$smarty->cache_dir = "./smarty_cache"; Cache folder

Left and right boundary characters, default to {}, but the actual application is easy to conflict with JavaScript
It is therefore recommended to replace <{}>
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";

$smarty->assign ("Booklist", $booklist);//The variable name and value passed;


$smarty->display (' my.tpl ')//template file that needs to be displayed, suffix can be written casually

Application of Smarty

Large-Scale Price Reduction
  • 59% Max. and 23% Avg.
  • Price Reduction for Core Products
  • Price Reduction in Multiple Regions
undefined. /
Connect with us on Discord
  • Secure, anonymous group chat without disturbance
  • Stay updated on campaigns, new products, and more
  • Support for all your questions
undefined. /
Free Tier
  • Start free from ECS to Big Data
  • Get Started in 3 Simple Steps
  • Try ECS t5 1C1G
undefined. /

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.