Hi.
I'm working on a rating system using
a xml file like this:
<?xml version="1.0" encoding="utf-8"?>
<poll>
<articles>
<article>
<id>2</id>
<rate>5</rate>
<rate>3</rate>
<rate>5</rate>
</article>
<article>
<id>3</id>
<rate>2</rate>
<rate>4</rate>
<rate>5</rate>
</article>
</articles>
</poll>
and I manage the file by Dom functions.
Can I have troubles if two or more users rate an articles
at the same time ?
Do you have a better xml scheda for the job ?
Bye.