<?php
session_start();
$_SESSION['email_id'] = 'info@www.coding4developers.com';
if(isset($_SESSION['email_id']))
{
echo $_SESSION['email_id'];
}
?>