我写了一个从摄氏度到华氏度的转换,反之亦然。问题是现在在表单字段中向我显示随机值。如何转换此代码,以便在输入值后,第二个字段中的转换值出现在第一个字段中?是否可以只使用 php?
if(isset($_POST['fah'])){
$cel=($_POST['fah']+32)/1.8;
}
if(isset($_POST['cel'])){
$fah=($_POST['cel']-32)*1.8;
}
?>
<html>
<body>
<form method="post" action="calc.php">
Fahrenheit: <input id="inFah" type="text" placeholder="Fahrenheit" value="<?php echo $fah; ?>" name="fah">
Celcius: <input id="inCel" type="text" placeholder="Celcius" value="<?php echo $cel; ?>" name="cel">
<input type="submit" value="Calc">
</form>
我希望在第一个字段中输入的值显示在第二个转换中。
Cats萌萌
白衣非少年
慕尼黑8549860