PHP: Call session_start() everytime you set a session?

Everytime i go to set a session variable do i call session_start() on each page?
e.g.
session_start()
$_SESSION['x'] = 'qwerty';
$_SESSION['y'] = 'ytrewq';

Also what is a session id?
 
Back
Top