Source code of tbs_us_examples_var.php

  1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
<?php

include_once('../tbs_class.php');

$amount 3.55;
$task['monday'] = '<cooking>';

class 
clsObj {
    var 
$param 'hello';
}
$obj = new clsObj;

$TBS = new clsTinyButStrong;
$TBS->LoadTemplate('tbs_us_examples_var.htm');
$TBS->Show();