Now I have logged in, set up the look and feel of my reports and have published my data and reports. Now What? How do I display the data on my web site? This is the easy part, all you need to do is copy a few lines of code into your web site and you are good to go. Here is a sample:
|
HTML SAMPLE CODE FOR YOUR WEB SITE <IFRAME title=Standings Src="http://wp.analyzersoftware.com/standings.php?customerid=cust01&season=winter2004&link=n" frameBorder=0 width="400" height="300" scrolling="auto"> <!-- Alternate content for non-supporting browsers -->Your browser does not support the technology to view standings within this page. <a href="http://wp.analyzersoftware.com/standings.php?customerid=cust01&season=winter2004&link=n" target="_blank">Click Here to View the Standings in a separate browser window.</a> </IFRAME> |
This code will display standings within an IFRAME that is 400 wide by 300 high (pixels). The main component or code is contained in a module call "standings.php". This module is store on a subdomain of Analyzer Software called wp.analyzersoftware.com. So in order to call the standings module, you will call the URL http://wp.analyzersoftware.com/standings.php. In order for this page to know what standings to display, you are required to pass parameters to it. Parameter like your customer id, the season you wish to display, your league, etc. If you are not familiar with adding parameter to a URL, then you may want to pick up an introductory HTML book. There is nothing too complex about adding a few parameters, but you may want to increase the flexibility of your implementation and take advantage of some server side coding.
Changes to our web display components will be an on going processes. We have decided to bring a very brief description of how the components are integrated here and have place the rest of the documentation on our web site in order to keep it current as we modify those components outside of this desktop software. You can always check out the latest web publishing info at http://www.analyzersoftware.com/webpublishing.html