<?php
    
require_once("UserClass.php");
    
session_start();

    
$_SESSION["User"] = new User('frW');

    
header("Location: FinalOOP.php");
?>