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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
[-
print OUT "*" ;
Execute ('EmbperlObject/epohead.htm') ;
print OUT "*" ;
-]
without print...
[$foreach $i (1..3) $]
[-
Execute ('EmbperlObject/epohead.htm') ;
-]
[$endforeach$]
without print...
[$foreach $i (1..3) $]
### [+ $i +]
[-
Execute ('EmbperlObject/epohead.htm') ;
-]
###
[$endforeach$]
with print in different blocks ...
[$foreach $i (1..3) $]
[- print OUT "* $i *" ; -]
[- Execute ('EmbperlObject/epohead.htm') ; -]
[- print OUT "*" ; -]
[$endforeach$]
with print...
[$foreach $i (1..3) $]
[-
print OUT "* $i *" ;
Execute ('EmbperlObject/epohead.htm') ;
print OUT "*" ;
-]
[$endforeach$]
|