Thanks, got me on the right track...I think. I can access these arrays with $POST. I have spent the last few days (really) trying to work out how to access these arrays to be able to use the results to update a database and then use some of the information further down my script. At the moment I have this
$choice = array($_POST['SessItemID'],$_POST['quan'],$_POST['Description'],$_POST['frame']);
And if I use print_r I can produce an array of arrays as may be expected. So say, bearing in mind their can be any number of rows, how could I utilise this in an update statement. I have experimented with what seems like thousands of combinations using while loops, foreach blah, blah. All I want to do is do UPDATE table SET Quantity = ' values of $_POST['quan']' WHERE values of $_POST['SessItemID'] .....etc. sorry about demo code....just easiest way to show what I am on about. Anyone point ot the precise way of doing this?