提交表单时,有没有一种方法不仅可以发送输入,还可以发送所有内容?

When submitting a form is there a way to not only send the inputs but also all the froms content?

当我提交表单并查看 $_POST 变量时,我只找到了表单输入的值。但我也想访问所有其他变量。有没有办法也发送它们?例如我怎样才能将 multiplicator1 的内容也发送到变量中?

<form>
 <table>
  <tr>
   <td><input class="inputGewicht" name="inputFieldsInput1" value="0" /></td>
   <td class="multiplicator" id="multiplicator1">5</td>
   <td class="uniqueProduct" id="uniqueProduct1">0.00</td>
  </tr>
 </table>
<form>

您可以像下面的代码一样使用输入 type="hidden"

<form>
     <table>
      <tr>
       <td><input class="inputGewicht" name="inputFieldsInput1" value="0" /></td>
       <td class="multiplicator" id="multiplicator1">5</td>
       <td class="uniqueProduct" id="uniqueProduct1">0.00</td>
      </tr>
     </table>

     <!-- Enter multiplicator1 and uniqueProduct1 values into input type hidden -->
     <input type="hidden" name="multiplicator1" value="5">
     <input type="hidden" name="uniqueProduct1" value="0.00">
 <form>