Scripting in StreamServe > StreamServe scripting language specifics > Conditional statements > The if statement

The if statement
Syntax
if (expression) 
{
statement1;
[statement2;]
...
[statementN;]
}
Examples
Example 23
if($countryCode = "USA")
{
$overlay = "invoiceUSA.lxf";
}
 
OpenText StreamServe 5.6 Updated: 2013-03-01