如何将html5输出标签数据添加到mysql中?

ymdaylpp  于 2021-06-25  发布在  Mysql
关注(0)|答案(1)|浏览(256)

现在我有了一个html5输出标签,它提供了一些计算。
例如

<form oninput="totalScore.value = (+num1.value)*(+num2.value);">
    <input type="number" id="num1" />
    <input type="number" id="num2" />
<br />
    <output name="totalScore" for="num1 num2"></output>
</form>

`现在我想将输出totalscore用于mysql查询。我该怎么做?

wribegjk

wribegjk1#

像这样试试

<!DOCTYPE html>
<html>
<body>
<form action="" id="numform" oninput="result.value=parseInt(a.value)+parseInt(b.value)">0
<input type="range" id="a" name="a" value="50">100
+<input type="number" id="b" name="b" value="50">
<br><br>
<input type="submit">
<p>The output element below is outside the form, but still a part of it.</p>
<input type="text" form="numform" name="result" for="a b">
</form>
</body>
</html>

表单提交输出数组

Array ( [a] => 83 [b] => 50 [result] => 133 )

您可以在mysql查询中使用这个数组

相关问题