Previously, the row variable was manually entered with:
row <input type="text"  name="row" />
How is that parameter, which is now marked hidden, made mutable, as when the type was input as above?
<!DOCTYPE html>
<html>
<head>
  <base target="_top">
</head>
<body>
  <h1>iterator</h1>
  <form action="<?= url ?>" method="GET">
    note <input type="text"  name="update" />
    <br>
    <input type="submit" name="Submit" /><br> <br> <br>
    <input type="hidden" name="row" value="3487">
    <span><?= params ?></span> <br> <br> <br>
    <span><?= update ?></span> <br> <br>
    <span><?= row  ?></span> <br> <br> <br> <br>
    <span><?= values ?></span> <br>
  </form>
</body>
</html>
The notion is to iterate through the row's of a spreadsheet, and so the row should increment each time it's used (or the submit button is clicked).  To increment the value it must be mutable and then sent back as a parameter to Code.js where it's used to query the Google Sheet.
Would this be accomplished with a <script> tag, perhaps?
 
    