11 lines
322 B
PHP
11 lines
322 B
PHP
|
<?php
|
||
|
$applicationName = 'applicationChooser';
|
||
|
$websiteTitle = 'Choose your website';
|
||
|
$webmasterEmail = 'info@SuperSmash.nl';
|
||
|
|
||
|
// Include the database configuration file
|
||
|
include_once ('databaseconfiguration.php');
|
||
|
|
||
|
// Include the SuperSmash framework configuration file
|
||
|
include_once ('SuperSmashconfiguration.php');
|
||
|
?>
|