The PLZ program will generate an application with the name "itemname.HTM" in the specified file. You can use this name to access the generated program through the Coyote web server._PROGRAM filename itemname
This statement must be the first statement in the program.
_SUBROUTINE filename itemname {parameter{,parameter...}}
The PLZ program will generate an application subroutine with the name "$itemname.HTM"
in the specified file.  You can use this generated subroutine as the
target of a _CALL statement.  You cannot access these subroutines
directly from the web but only by calling it from an mv/WEB application.
This statement must be the first statement in the subroutine.
You should use the _INCLUDE syntax instead of the base system INCLUDE statement if the included item has any mv/WEB specific statements._INCLUDE FILE filename itemname _INCLUDE HOST hostpath _INCLUDE DSG dsgname dsgpath
_CALL "subname" {parameter{,parameter...}}
_CALL variable {parameter{,parameter...}}
You can use this command to call external mv/WEB subroutines.  The
first parameter can either be the name of the subroutine enclosed in quotes,
or an mv/BASIC variable or expression that contains the subroutine name.
You should use the _GOSUB statement instead of the system GOSUB statement in any case where the calling subroutine contains any mv/WEB specific statements._GOSUB label
_RETURN
_PVAR variable{,variable...}
_CVAR variable{,variable...}
It is good coding practive to create a single item with _CVAR definiations
and let all application programs and modules _INCLUDE this definition item.
This makes it easier to keep common variables in sync as an application
is developed.
Use of this statement is a convenience only. It is actually more efficient for you to open data files to a local variable when you need to use them then it is to use the _FILE statement._FILE filename variable _FILE DICT filename variable
_PAGE FILE filename itemname _PAGE HOST hostpath _PAGE DSG dsgname dsgpath
_TIMEOUT "hh:mm:ss" _TIMEOUT variable
|  |  |