Could anyone tell me what I can include in the constructor?
I know that I can do the following.
function __construct(){
parent::Controller();
session_start();
}
But I am wondering if I can add any variables, if statement etc.
Thanks in advance.