Programming Reference Manual
 
Syntax
 
HtmGetField(fieldname$)
 
Description
Returns a string value, parsed from the webserver request through the CGI interface, as specifiied by the fieldname$ parameter, where fieldname$ is the name as defined in the requesting html page as an INPUT TYPE object.
 
PLEASE NOTE: When a new CCL-procedure is build from a html document, all field names will be inserted as global constants in your source. 
 
Parameter
Description
fieldname$
The name of  the input element of the submitting html document.
See Also
Example
 
Sub Main
TrmSetInterface "HTML"
TrmPrint "Content-type: text/html"
TrmPrint ""
TrmPrint "<HTML>"
TrmPrint "<BODY>"
TrmPring "Your Last name is: " & _
HtmGetField("LAST_NAME")
TrmPrint "</BODY>"
TrmPrint "</HTML>"
End Sub