Which one of the following function is used to start a session?
A
start_session()
B
session_start()
C
session_begin()
D
begin_session()
Correct Answer: session_start()
A session is started with the function session_start() . The session variables are set with the PHP global variable which is $_SESSION.