Thanks sorted, is this method a good idea as if there were 10,000 products it will have to add all there data to the database everytime one change is made?
foreach($_POST['price'] as $id => $text){
$price = "UPDATE items SET price='$text' WHERE id='$id'";
mysql_query($price) or die("ERROR");
}