http://qs1969.pair.com?node_id=54157


in reply to Re: CGI Benchmarks
in thread CGI Benchmarks

That is actually the current way that I am doing it, except for the fact that i have "data files" that hold the html.
ie.
open(HTML,"index.da1"); while(<HTML>){print $_;} close(HTML);
then I'll have whatever dbi stuff I have to do then do the same thing for "index.da2" and so on. Do you think that's slower than just having all the html code "embedded" into the perl?