Hi
I can read and write to an sql database no problems.
In my form I pull back an id, name, price, date and type from a db in a repeating section. I want to then update the date and price for that one product, but in my section it puts every item as the same price as it only sees one id (the first one)
What I want is:
Current information
id = 1
name = blah
price = 12
date = 01/08/2011
New information
id = 1
date = 01/09/2011
price = 13
Current information
id = 2
name = blah blah
price = 12
date = 01/08/2011
New information
id = 2
date = 01/09/2011
price = 13
What I'm getting is
Current information
id = 1
name = blah
price = 12
date = 01/08/2011
New information
id = 1
date = 01/09/2011
price = 13
Current information
id = 2
name = blah blah
price = 12
date = 01/08/2011
New information
id = 1
date = 01/09/2011
price = 13
How do I get around this?
Mike