I am looking for conceptual solution for my problem and advise on using the most appropriate technology.
I have database which consist of one table (id,name,...) In the functionality of the project it is required to add comments. While previewing object there will be space provided for all the comments. Should I create another table with id as primary key and another column called comment ? If so, having two or more comments describing the same product (and sharing the same id) is plan wrong Should I better use some XML file and try to build something like:
<allobjects>
<object id=1>
<comment>blaah blah </comment>
<comment>something</comment>
<object id=2>
</object>
</allobjects>
and then loop through xml structure and retrieve comments ?

<object id=1> ... </object><object id=2></object> ...instead of<object id=1> ... </object id=2><object></object> ...? Compare the id=2 placement. – Wug Jul 30 '12 at 20:39