PHPで2つ以上の商を合計したい jsプロンプトで2桁のユーザー入力を得ようとしましたが、PHP変数に値を割り当てようとしました。 しかし、商は難しいです。任意の最高のソリューションはありますか?js変数からphp varibleに値を代入した後、算術演算ができないのはなぜですか?
のみJavaScriptを使用して<?php
function quotient($a, $b) {
return $a/$b;
}
function output($a, $b, $quo) {
echo "The quotient of ". $a. " and ". $b. " is " . $quo. "<br>";
}
$sum = 0;
$quo = 0;
for ($i = 0; $i < 2; $i++) {
echo "<script>
var a = window.prompt('please enter first digit');
a = parseInt(a);
var b = window.prompt('please enter second digit');
b = parseInt(b);
</script>";
$a = "<script>
document.write(a);
</script>";
$b = "<script>
document.write(b);
</script>";
$quo = quotient($a, $b);
$sum += $quo;
output($a, $b, $quo);
}
echo "The sum of " . $i . " quotient is " . $sum;
?>
JavaScriptのみを使用してください。コードを簡単に作成できます。 –
私は知っている、jsと簡単ですが、私はPHPで欲しい – Amir
あなたはプロンプトからの入力を取るしたいですか? –