CGI

Variables - C-shell/Common Gateway Interface

  • C-shell has a generic variable type
    	set myVar1 = blah
    	set myVar2 = 10
    	set myVar3 = "These are the days"
    

    All of these are acceptable.
    The variable is used in the script like this:

    	$myVar1
    

    CGI is not a recommended way of writing CGI scripts. Better to use Perl. Better yet, avoid CGI and use an HTML embedded scripting language such as PHP