Hi,
I have an HTML form consisting of a number of rows of input boxes. I want to insert each row into my database.
The rows (lots of them) are produced using PHP such that the input element names are numbered by row.
This gives me (like) item_no1...item_no100 and item_desc1...item_desc100.
The problem is trying to build my SQL statement after submission. I cannot rename my variable to $item_desc$iteration for my loop of INSERTs.
Any ideas?
Many Thanks,
James