in reply to file access

this will open a file, and send the content of the file to the browser print "Content-type: text/html\n\n"; open (file,"path/file.txt") || print "Could not open\n"; while (<file>) { print $_; } close(file); } mark