Create config.php

This commit is contained in:
Fernando Méndez 2021-04-15 14:49:52 +02:00 committed by GitHub
parent 861430e017
commit ea1c39ac97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

9
assets/php/config.php Normal file
View File

@ -0,0 +1,9 @@
<?php
//Start session:
session_start();
//HTML template:
require_once('./assets/php/template.php');
$template = new Template();
$prefix = $template->get_prefix();
?>