PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Angelo R. Pinto   PHP Session Managament Class   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Session Managament Class
Wrapper class to manage sessions
Author: By
Last change: Alterado o apontamento para a pasta 'src'
Date: 4 years ago
Size: 483 bytes
 

Contents

Class file image Download
<?php

   
require_once ("./src/ClassSession.php");

   
$session = new Session();
   
$session->start();
   
$session->print_session();

?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="ISO-8859-1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>SESSION</title>
</head>
<body>
    <h1>Home</h1>
    <p>Session Created</p>
    <a href="logado.php">Page</a>
</body>
</html>