• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

cgi code to include text files

or...

open (TEXT,"mytextfile.txt");
print join('<br>', (<TEXT>));
close (TEXT);
 
MindRash, he wanted to include text files, not subroutines or statements.

dscikate, here's another version:

print "<pre>\n";
open (TEXT,"mytextfile.txt");
for (<TEXT>){
print $_
}
close (TEXT);
print "</pre>\n";
 
Back
Top