Session in php

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

Share This:

Leave a Reply

Your email address will not be published. Required fields are marked *