PHP

Getting Started String Date If Else Loop Array Functions Session Files Super Global Variables Debugging MySQL MySQL Read Data JSON Markdown
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

PHP : Session

2017-01-01

Session

session_start();

$_SESSION["favcolor"] = "green";

echo "Favorite color is " . $_SESSION["favcolor"];

// remove all session variables
session_unset(); 

// destroy the session
session_destroy();