You would surely think I could search on this and get the semantics right - but I had no luck.
I am using a class (Calendar.php) and I override one function in that class. Works great in my komodo environment. Now I am trying to include it in my web site ...
When I copy the driver program (ctest.php) which contains "require Calendar.php" the code stops executing (starts printing itself on the screen) at the first line which uses ->
like in:
cal = new MyCalendar;
.
.
.
cal->setStartDay(1);
start showing on the screen from setDay ... on. But I get no error on the "require" statement.