10 lines
151 B
PHP
10 lines
151 B
PHP
<?php
|
|
$heading = "profile";
|
|
|
|
session_start();
|
|
if(!isset($_SESSION["username"])){
|
|
header("Location: /");
|
|
exit;
|
|
}
|
|
|
|
require "views/profile.view.php";
|