Hello,
I'm working with a project where i have to include some html from a file and found out that the include() function is slower then open the file and print the lines from it (with the code below). Just wanted to know why? Is it because the include() function parse the document for php code or something like that?
$fp = @fopen($filename,"r");
$contents = fread ($fp, filesize($filename));
echo $contents
Regards Jon