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

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();
?>