How to implement the League Manager Online into my own website?

Attention: open in a new window. PDFPrintE-mail

FAQ

How to implement the League Manager Online (LMO) into my own website?

direct integration:
The URL of the LMO is: http://www.merseysidechess.org.uk/lmo/lmo.php  Using this URL you may link the LMO or integrate the LMO directly into your website.

implementing the LMO using iframe:
Use this code:
<p><iframe width="100%" scrolling="no" height="720px" frameborder="0" src="http://www.merseysidechess.org.uk/lmo/lmo.php" marginwidth="0" marginheight="0"></iframe></p>
You may change the parameters width, scrolling, hweight, ... to your own needs.

If you like to call a specific league directly, you may use instead of "http://www.merseysidechess.org.uk/lmo/lmo.php" this URLs:

Division 1:
http://www.merseysidechess.org.uk/lmo/lmo.php?todo=&file=2009-10-division-1.l98

Division 2:
http://www.merseysidechess.org.uk/lmo/lmo.php?todo=&file=2009-10-division-2.l98

Division 3:
http://www.merseysidechess.org.uk/lmo/lmo.php?todo=&file=2009-10-division-3.l98

Division 4:
http://www.merseysidechess.org.uk/lmo/lmo.php?todo=&file=2009-10-division-4.l98

Division 5:
http://www.merseysidechess.org.uk/lmo/lmo.php?todo=&file=2009-10-division-5.l98

Knotty Ash Cup
http://www.merseysidechess.org.uk/lmo/lmo.php?todo=&file=knotty-ash-cup-2009-10.l98

implementing using include:
The path to the LMO is in this case NOT the URL but the physical path: /home/merseys4/public_html/lmo/lmo.php
Here is the code:
include("/home/merseys4/public_html/lmo/lmo.php");
If you like to open a specific league you have to add prior to the code above:
$file="NameOfTheLeague.l98";
Here are the names of the leagues:
Division 1: 2009-10-division-1.l98
Division 2: 2009-10-division-2.l98
Division 3: 2009-10-division-3.l98
Division 4: 2009-10-division-4.l98
Division 5: 2009-10-division-5.l98
If you didn't have declared a DOCTYPE in your HTML-code you should do it now:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/html4/loose.dtd">
If you didn't hade declared a charset in your HTML -code you should do it now:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
Add in the <head> of your HTML-code:
<link type="text/css" rel=stylesheet" href=/home/merseys4/public_html/lmo/lmo-style-nc.php">
<style type='text/css'>@import url(/home/merseys4/public_html/lmo/lmo-style.php' );</style>