// Simple Example 1

// get the CGI user variable 'x'...
#cgivar x

// do the banner and preliminaries...
#set TITLE = "Simple example 1"
#include top

<center>

<h3>x = @x</h3>

#if @x = 0
  x is zero
#elseif @x = 1
  x is one
#elseif @x = ""
  x was not given
#endif
  
<br>
<br>
<a href="?rtn=index">Back to examples list</a>
