Sample> Hello World

<?php

// include TPLN
include('TPLN/TPLN.php');

$TPLN = new TPLN;
$TPLN->open('hello_world.html'); // you can do  $TPLN->Open();
$TPLN->parse('my_text','Hello World !');
$TPLN->write();

?>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>TPLN - Simple Hello World ! Sample</title>
    <link href="../style.css" rel="stylesheet" type="text/css" />
</head>
<body>

<h1>{my_text}</h1>

<br />
<br />
{_Logo}<font size="1"> in {_Chrono} s<br>
Queries executed: {_QueryCount}</font>

</body>
</html>