Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 297 Bytes

simple-example-of-a-plain-php-template.md

File metadata and controls

14 lines (7 loc) · 297 Bytes

Simple example of a plain PHP template

Using the Plates library.

<?php // user_profile.php ?>

<?php $this->insert('header', ['title' => 'User Profile']) ?>

<h1>User Profile</h1>

<p>Hello, <?=$this->escape($name)?></p>

<?php $this->insert('footer') ?>