#!C:/perl/bin/perl.exe use CGI; $query = new CGI; print $query->header; print $query->start_html(-title=>'2D Graph Demo'); print "
"; print ""; print "Two-dimensional graphing demo.
"; print "Please enter in the x and y coordinates.
"; print "x
"; print "y

"; print "Please enter in the minimum and maximum value of the variables.
"; print "min
"; print "max
"; print ""; print ""; print $query->end_html;