Dashboard Temp Share Shortlinks Frames API

HTMLify

Session.php
Views: 145 | Author: djdj
1
2
3
4
5
6
7
8
<?php
    //session
    //session use for the verification of the user
    session_start();
    $_SESSION['username'] = 'SabkaCode';
    $_SESSION['details']  = 'coding';
    echo 'We have save your data (session)';
?>