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