Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP スクリプトで A=BC を取得しました
$A = $data['B']-$_POST[C];
50または任意の数値を減算します。
でも私はしたい A= B-C-50
A= B-C-50
そのためのphpコードは何ですか。
また、その値のパーセンテージを減算したい場合は、次のように教えてください
A = B-C-(B*10)/100 (10% of B)
次のコードが必要です:
$A = $data['B'] - $_POST['C'] - 50; //for your first question $A = $data['B'] - $_POST['C'] - ($data['B']*0.1); //for second question