print "Content-type: text/html\n\n"; print "STUFF"; print "" open(FILE, "data.txt"); while(){ chomp; print "Saw $_ in data.txt
\n"; } close FILE; print "";