获取PHP中的HTML输出

问题描述 投票:0回答:2
<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

php html variables output
2个回答
0
投票
<output>不是表单内的有效表单标签。 name属性正确,但标签必须为<input>

0
投票
如何获取HTML输出作为php变量?
© www.soinside.com 2019 - 2024. All rights reserved.