Hi All,

Now I am trying to modify the 'Add/Edit Product' page in the admin area. I realize that the front-end <form> elements will need to be added in 'admin/product.php' but I'm not sure where to modify the query to update the database properly. Basically I would like to add this option:

Code:
Require 18+ Notice? <select name="reqnotice"><option value="1">Yes</option><option value="0">No</option></select>
And then modify the INSERT/UPDATE query accordingly:

PHP Code:
$sql "UPDATE... legalnotice='$reqnotice'"
Can anyone direct me as to where to make the query modifications?