inital template

This commit is contained in:
2021-01-23 23:11:19 +01:00
commit 083337b7d6
40 changed files with 22633 additions and 0 deletions

31
sources/backend/ajax.php Normal file
View File

@@ -0,0 +1,31 @@
<?php
#--------------------#
#----- by 4nima -----#
#----- v. 1.0.0 -----#
#-- coding@4nima.de -#
#--------------------#
session_start();
include_once('/volume1/web/sources/config.php');
switch ($_POST['side']) {
case 'netStatus':
include($ajaxPath.'network_status.php');
break;
case 'input':
include($ajaxPath.'db_input.php');
break;
case 'priview':
include($ajaxPath.'pokePriview.php');
break;
case 'dex':
include($ajaxPath.'pokeInsertDex.php');
break;
default:
# code...
break;
}