I have a text box that outputs the value of the web price within a table:
<input type="text" name="Web_Price" value="<?php echo $row_Products['Web_Price']; ?>" size="8" />
I would like this text box, when a button is clicked, to ouput a new price that is within another table instead of the current value output from <?php echo $row_Products['Web_Price']; ?>" size="8" />. This table is called ProductsUpdated. Any ideas would be appreciated.