You can comment out a line, or part of a line, using double slash (//). To comment out a whole section in a script, you can use /* to start the section and */ to end the section to comment out.
Example 27 if($ourref = "Mike Jones") //Condition
{
$tray = "Lower tray"; //Statement
}
//Log(1,$tray);
Example 28 if($ourref = "Mike Jones")
{
$tray = "Lower tray";
}
/*if($ourref = "Bella Houdini")
{
$tray = "Upper tray";
}
Log(1,$tray);*/
OpenText StreamServe 5.6.2 | Updated: 2018-01-26 |