' Making a CGI script in FreeBASIC is simple, first print any headers, ' most of the time you just need Content-type, then an empty line, then ' the actual page data. print "Content-type: text/html; charset=ISO-8859-1" print "" print "" print " " print " CGI Test" print " " print " " print " It works!" print " " print ""