我剛剛開始學習PHP時做了一個相當蹩腳的計算器。我無法弄清楚爲什麼一切似乎都很好,除非答案不會顯示。非常基本的PHP計算器:不能計算出我做錯了什麼
這裏的HTML:
<head>
<meta charset="utf-8">
<title>A (Seriously) Simple Calculator</title>
<link rel="stylesheet" type="text/css" href="./calc_css.css">
</head>
<body>
<form method="post" attribute="post" action="calc1.php">
<p>First Value:<br/>
<input type="number" id="first" name="first" step="0.0000000001"></p>
<p>Second Value:<br/>
<input type="number" id="second" name="second" step="0.0000000001"></p>
<p>+<input type="radio" name="operation" id="add" value="add" checked="true"></p><br/>
<p>-<input type="radio" name="operation" id="subtract" value="subtract"></p><br/>
<p>X<input type="radio" name="operation" id="multiply" value="multiply"></p><br/>
<p>/<input type="radio" name="operation" id="divide" value="divide"></p><br/>
<p></p>
<button type="submit" name="answer" id="answer" value="answer">Calculate</button>
</form>
</body>
</html>
這是我的PHP:
<html>
<head>
<meta charset="utf-8">
<title>Answer</title>
</head>
<body>
<p>The answer is:
<?php
$first = floatval($_POST['first']);
$second = floatval($_POST['second']);
if($_POST['operation'] == 'add') {
echo $first + $second;
}
else if($_POST['operation'] == 'subtract') {
echo $first - $second;
}
else if($_POST['operation'] == 'multiply') {
echo $first * $second;
}
else($_POST['operation'] == 'divide') {
echo $first/$second;
}
?>
</p>
</body>
</html>
我不認爲這與我的輸入步驟或類型做了,我已經嘗試了所有方式(我能想到的)在我的PHP文件中。這就是說,我是一個非常綠色的初學者。任何幫助將不勝感激。
你是否在服務器上託管該php文件或試圖在本地訪問它(即從'file:// URL)? PHP只能通過服務器運行。如果沒有,[更多詳細信息](http://stackoverflow.com/help/mcve)將是必需的,不僅「我的代碼無法正常工作」 - 您是否收到任何錯誤消息? –
請參閱:http://meta.stackexchange.com/q/5234 – Rizier123