rk_prabakar 0 Posted October 18, 2012 Report Share Posted October 18, 2012 Hi all, This is my first question in W3Schools forum, and my question is I want to know whether it is applicable or possible to pass multiple parameter for a single attribute in xml tag?For example: <book name="Need" name="Help" price="10$"/><book name="Soon" name="Plz" price="20$/>...... Is it applicable? I know it may sound silly but if it is not possible then I'll go for any other option that may exist.So plz help me ASAP. Thanks in advance. Quote Link to post Share on other sites
Ingolme 1,020 Posted October 18, 2012 Report Share Posted October 18, 2012 No, it's not possible. But XML's tree structure allows you to represent the same data with child elements: <book> <name>Need</name> <name>Help</name> <price>10$</price></book> Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.