PHP Classes

File: docs/Features/Comments.md

Recommend this page to a friend!
  Packages of Rafa Rodriguez   Div PHP Template Engine   docs/Features/Comments.md   Download  
File: docs/Features/Comments.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Div PHP Template Engine
Template processing engine that replaces tags
Author: By
Last change:
Date: 3 months ago
Size: 315 bytes
 

Contents

Class file image Download

Syntax

<!--{ inline comment here }-->
	
<!--{ 
	
	Multi-line comment here 
	This multiline comment is not sent to browser.
	
}-->

Example

<h1>Hello world</h1>

<!--{ This is a comment }-->
<span>Powered by Div</span>

Output


<h1>Hello world</h1>
<span>Powered by Div</span>