Hi all:
I'm using php4 and sessions. In my php files I often use require(). Do I need session_start() in the required files as well?
No, the code out of the require file get effectively copied out of the require file and placed as a block in the calling code - which means it will relate to the session_start() in the calling file.