I have a system that issues an XML. It was done in PHP. In XML it has a tag which is a random number, but has to be incremental.
That is, in tag it has the number 1000. The next tag must have the number 1001.
This is easy to do in PHP. I left a fixed variable and each time it clicks to emit, it increases. But all XML is coming with equal numbers, as it is incrementing from a fixed variable.
How to make each XML have its incremental number?