However, the path to the file that has my classes is stored in a session variable which I cannot see until I session_start().
EG:
Code: Select all
include($_SESSION['systempath']."/classes.php");
session_start();or
Code: Select all
session_start();
include($_SESSION['systempath']."/classes.php");So what do I do?
Which comes first the chicken [the session_start()] or the egg [the include()]
Any help gratefully appreciated!