L-am facut dar ..arata deplorabil si nu pare sa functioneze in parametri normali
Am reusit sa ma loghez dar nu cum scrie acolo..[ nume.ro/director/admin.php daca mai are cineva probleme.]
Si cu restul detaliilor cum le ordonez ?
For the compact block, aka zone, which shows the map image:
global $output, $lgsl_zone_number;
$lgsl_zone_number = 1;
$output = "";
require "lgsl/lgsl_files/lgsl_zone.php";
echo $output;
unset($output);
The zone number links with zones set in the LGSL admin area.
-------------------------
To integrate the list into an existing page:
global $output;
$output = "";
require "lgsl/lgsl_files/lgsl_list.php";
echo $output;
unset($output);
-------------------------
To integrate a servers details into an existing page:
global $output, $lgsl_server_id;
$lgsl_server_id = 1;
$output = "";
require "lgsl/lgsl_files/lgsl_details.php";
echo $output;
unset($output);
-------------------------