September 2001
Intermediate to advanced
768 pages
32h 45m
English
int session_start(void)
Initializes a session.
Returns:
Always returns TRUE
Description:
Initializes a session. If a session ID is sent as a GET or in a cookie and is a valid session identifier, the session is resumed.
Version:
Existing since version 4.0
Example:
session_start();
if (!$counter) session_register("counter");
echo $counter;
$counter++;
|
Read now
Unlock full access