As the subject says, if your website uses sessions to keep track of a user session,
(1) does the code session_start(); need to be on every page of the website?
(2) I hear about having no white spaces before <?php session_start(); ?>. So this should then go before the opening <html> tag?
(3) How do you tell if a session is already started? Cause I assume that I would not want to call session_start(); on a page that already had a user session running.
Thanks.
Jonathan