In this video we are going to learn about starting a session and destroying a session in PHP. session_start() function first checks if a session is already started and if none is started then it starts one. It is recommended to put the call to session_start() at the beginning of the page. A PHP session can be destroyed by session_destroy() function.