Many Thanks For The Speedy Responce.
Fuzz01
vincent wrote:
If you just want to load a file to be displayed, include is still the easiest way.
You could also use the filesystem functions to open the file and print the content, but that's a bit more complex.
The main diff between include and require is that
include() only loads the file when the include() function is executed:
so this will never load the file:
if (0)
{
include("bla.php");
};
and require will allways load the file, even if the "require()" never gets executed:
so this will load the file:
if (0)
{
require("bla.php");
};