*/
include("session.php");
require("class_functions.php");
require_once("class_db.php");
$func = new functions();
if(file_exists($_SESSION['config']['lang'].'.php'))
{
include($_SESSION['config']['lang'].'.php');
}
else
{
$_SESSION['error'] = "Language file missing...
";
}
header('Content-type: text/html; charset=UTF-8');
//
if( isset($_GET['value']) && strlen($_GET['value']) <> 0 )
{
if( isset($_GET['id']) && $_GET['id'] =="domainbox")
{
require_once("class_domains.php");
$service = $_GET['value'];
$dom = new domain();
$domains = array();
$domains = $dom->get_domains($service);
//$func->show_array($domains);
?>