blob: 66734ce05839535aa89df2540a1502d5e5aed881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<com:TContent ID="body">
<h1>TStatements Sample</h1>
<table class="sampletable">
<tr><td class="samplenote">
Using TStatements component tag:
</td><td class="sampleaction">
<com:TStatements>
<prop:Statements>
$uid=$this->UniqueID;
echo "UniqueID is '$uid'.";
</prop:Statements>
</com:TStatements>
</td></tr>
<tr><td class="samplenote">
Using shortcut statements tag:
</td><td class="sampleaction">
<%%
$uid=$this->UniqueID;
echo "UniqueID is '$uid'.";
%>
</td></tr>
</table>
</com:TContent>
|