I have a page which was created by k2 extension and I have a xml file whose data is updated every minute(I download and overwrite it by crontab every minute). In that xml file there are match results current standings and topscorers and I display those results on the page. Every match result and current standing and topscorers are between tags because whenever a link is clicked another window should be poped up which contains corresponding information which will be supplied again with that xml file.
Briefly whenever you click on a link there should be created a new page with full joomla support(a new joomla article or component or whatever I don't have any idea).
I have managed to popup a new php page with a unique url and I have also displayed corresponding information from xml but this php page is not related to joomla.
So I am trying to create unique URLs for each match result. So whenever someone clikcs on a match result a new window with unique URL (but same article) should be opened and the corresponding information is fetched with the following code
<xsl:value-of select="@sport"></xsl:value-of>: <xsl:value-of select="@template"></xsl:value-of> - <xsl:value-of select="@tournament"></xsl:value-of>
<span style="float: right;">
<a href='xmlstore.php?type=standing&tsid={$stage}' class="popup">Standing</a> :::
<a href='xmlstore.php?type=topscorer&tsid={$stage}' class="popup">Topscorer</a>
</span>
This code works actually perfectly, whenever a match score is clicked a new page with a unique url is created but I couldn't find anyway to bind this xmlstore.php to my joomla article. Even I am not sure if there is anyway to do that.