Hello, > But what I don't understand is that every request on the web site will, I > think, execute the initialization code. > > Isn' it better to load this code only once ? Or does this code need to be > executed on every request ?
Yes, it have to be executed, since in PHP every single request is absolutely independent from the others. Ádám
