Here's the text from the .txt file

#### use strict; use CGI qw(:standard); print header; print start_html('My Text File'); open (TEXTFILE, "my_text_file") or die "Cannot open text file: $!"; while () { chomp; print $_, p; } close (TEXTFILE) or die "Cannot close file: $!"; print end_html;