I have this line that works fine. It replaces the current data with new data. No problem.
update_post_meta ($ids[$i], 'ProductDescription', $descr[$i]);
However, rather than overwrite the previous data, can I simply append the new data after the old data instead somehow?
Sounds easy.