#!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 the x and y coordinates for the point you'd like to plot.
"; print "x
"; print "y

"; print "Please enter the minimum and maximum possible values of these variables.
"; print "min
"; print "max
"; print ""; print ""; print $query->end_html;