xml child to multiple html pages

Viewed 25

How can I display the individual data of each book in separate HTML pages and link them together with some form of <a>Next book</a> link?

<books>
    <book>
        <Title>Web Warrior Series Xml </Title>
        <Author>Mckinnon, A</Author>
        <Year>2003</Year>
        <lib-code>138326</lib-code>
        <publisher>Thompson Brook</publisher>
    </book>
    <book>
        <Title>Xml in Record Time</Title>                         
        <Author>Natanya Pitts,</Author>
        <Year>2016</Year>
        <lib-code>173134</lib-code>
        <publisher>Bpb</publisher>
    </book>
    <book>
        <Title>Xml in Easy Steps</Title>
        <Author>McGrath, M</Author>
        <Year>2009</Year>
        <lib-code>153615</lib-code>
        <publisher>Dreamtech</publisher>
    </book>
</books>
0 Answers
Related