[ BACK TO INDEX ] ------------------------- Use PhpMyAdmin ( or some other tool ) to import the lgsl_install_sa.sql into a database. Edit the lgsl_config.php to set your MySQL details and the LGSL admin area password. ------------------------- In your browser open /lgsl/admin.php and login. Add a server and test it works before doing anything more. ------------------------- 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); ------------------------- Please see the 'Extra Information' section of the readme for further info. -------------------------