Topic: making a line break in an xml catalog

So I'm all finished Jon's tutorial on making a php shopping cart, and am now in the process of customizing the shopping cart system to fit the catalog of certain business I am helping a friend with.

My problem is that the xml catalog seems to only display horizontally across the page, but I need to make a line break, or else the items will look crammed together.

Does anyone here know what tag to use to make a line break?  I tried both <br> and <br />, but neither work.   I did some google searches, and some others have asked this same question, but the suggestions people are making (something about /n) are not working for me.

Thanks!

- Cory


PS: here is what the code looks like that I want to break up into separate lines.

<items>
<product>
<id>Dried Tomatoes</id>
<title>Tomatoes</title>
<description>blah test alpha beta carrot</description>
<price>2.00</price>
</product>

<product>
<id>Dried Apples</id>
<title>Apples</title>
<description>blah test alpha beta carrot</description>
<price>2.00</price>
</product>


<product>
<id>Mango</id>
<title>Mango</title>
<description>blah test alpha beta carrot</description>
<price>2.00</price>
</product>

<product>
<id>Orange</id>
<title>Orange</title>
<description>blah test alpha beta carrot</description>
<price>2.00</price>
</product>

<product>
<id>Orange</id>
<title>Orange</title>
<description>blah test alpha beta</description>
<price>2.00</price>
</product>

</items>

Last edited by Cory Duchesne (2009-10-04 13:45:08)