<html>
<form action="TEMP.php" method="POST">
<output name="Total"> 0.00 </output>
</form>
</html>
<?php
$Output=$_POST['Total'];
?>
我如何将HTML输出作为php变量?这不适用于输出。此链接中有一个示例,输出将自动在旁边显示金额。但是现在我需要在PHP中将其作为变量。
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
<output>
不是表单内的有效表单标签。 name
属性正确,但标签必须为<input>
如何获取HTML输出作为php变量?