Quote:
Originally posted by jennycards
PHP Code:
<? include ("somefile.html"); ?>
|
not that it makes a big difference but readfile() would be a wee bit quicker for static html or text files as the php preprocessor won't bother evaluating the contents of the file.
PHP Code:
<? @readfile("./somefile.html"); ?>
cheers