2017-03-11 02:51:06 +07:00
|
|
|
<?php
|
|
|
|
/**
|
2022-10-16 14:50:24 +07:00
|
|
|
* PHP Mikrotik Billing (https://github.com/hotspotbilling/phpnuxbill/)
|
2017-03-11 02:51:06 +07:00
|
|
|
**/
|
2023-06-15 15:26:38 +07:00
|
|
|
session_start();
|
2022-08-23 16:33:21 +07:00
|
|
|
|
2023-06-15 15:26:38 +07:00
|
|
|
if(isset($_GET['nux-mac']) && !empty($_GET['nux-mac'])){
|
|
|
|
$_SESSION['nux-mac'] = $_GET['nux-mac'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($_GET['nux-ip']) && !empty($_GET['nux-ip'])){
|
|
|
|
$_SESSION['nux-ip'] = $_GET['nux-ip'];
|
|
|
|
}
|
2023-09-21 12:09:03 +07:00
|
|
|
|
|
|
|
if(isset($_GET['nux-router']) && !empty($_GET['nux-router'])){
|
|
|
|
$_SESSION['nux-router'] = $_GET['nux-router'];
|
|
|
|
}
|
|
|
|
|
2023-06-15 15:26:38 +07:00
|
|
|
require_once 'system/vendor/autoload.php';
|
|
|
|
require_once 'system/boot.php';
|
2017-03-11 02:51:06 +07:00
|
|
|
App::_run();
|