I have created a xslt document which formats an xml document, but I would like the results from the xslt sheet to be paginated.
here is the orginal xlst document
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xsl:for-each select="musicInformation/musicdetails">
<label for="artistname{position()}" id="artistnameLabel{position()}">Artist Name:</label>
<span id ="artistname{position()}"><xsl:value-of select="artistname" /></span>
<br/>
<label for="recordname{position()}" id="recordnameLabel{position()}">Record Name:</label>
<span id ="recordname{position()}"><xsl:value-of select="recordname" /></span>
<br/>
<label for="recordtype{position()}" id="recordtypeLabel{position()}">Record Type:</label>
<span id ="recordtype{position()}"><xsl:value-of select="recordtype" /></span>
<br/>
<label for="format{position()}" id="formatLabel{position()}">Format:</label>
<span id ="format{position()}"><xsl:value-of select="format" /></span>
<br/>
<a href="xmlDetail.php?mid={@m_id}" >See Details</a>
<br/><br/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>