In php, smarty implements a multi-template website, and phpsmarty implements a template.

Source: Internet
Author: User

In php, smarty implements a multi-template website, and phpsmarty implements a template.

This article describes how to implement a multi-template website using smarty in php. Share it with you for your reference. The specific implementation method is as follows:

Template model1.htm code:

<Html> 

Template model2.htm code:

<Html> 

Template model3.htm code:

<Html> 

Php page implementation:

<? Php require 'libs/Smarty. class. php '; // contains the Smarty class library file $ smarty = new Smarty; // creates a new Smarty object $ title = "Test"; $ content = "This is a test! "; $ Smarty-> assign (" title ", $ title); // assign a value to the variables in the template $ smarty-> assign (" content ", $ content ); // assign the value of if (! Isset ($ _ GET ['model']) // select different templates based on parameters {$ smarty-> display('model1.htm ');} else {if (file_exists ('templates/Shanghai') // determines whether the template file exists {$ smarty-> display('model'.w._getw.'model'{.'.htm');} The else {echo "template parameter is incorrect! ";}}?>

I hope this article will help you with php programming.

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.