Add files via upload

This commit is contained in:
Fernando Méndez
2021-04-26 22:40:34 +02:00
committed by GitHub
parent b033bdf328
commit 1e9685ee9b
99 changed files with 4870 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('template.php');
$template = new Template();
$prefix = $template->get_prefix();
?>