不需要php呀
成都創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的黃州網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
這樣寫的行不
!DOCTYPE?html
html
head
title簡單計(jì)算器/title
/head
body
input?type="text"?name="first"?id="first"
select?id="operate"
option+/option
option-/option
option*/option
option//option
/select
input?type="text"?name="second"?id="second"=
input?type="text"?name="result"?id="result"
input?type="button"?name="運(yùn)算"?value="運(yùn)算"?onClick="operate()"
script?type="text/javascript"
function?operate()?{
var?first?=?parseInt(document.getElementById("first").value);
var?second?=?parseInt(document.getElementById("second").value);
var?result?=?document.getElementById("result");
var?opt?=?document.getElementById("operate");
if?(0?==?opt.selectedIndex)?{
resultvalue?=?first?+?second;
}else?if(1?==?opt.selectedIndex){
resultvalue?=?first?-?second;
}else?if?(2?==?opt.selectedIndex)?{
resultvalue?=?first?*?second;
}else?if?(3?==?opt.selectedIndex)?{
if?(second?==?0)?{
alert("除數(shù)不能為0");
}
resultvalue?=?first?/?second;
}
result.setAttribute("value",resultvalue);
}
/script
/body
/html
?php
$x = 50;
$y = 20;
$z = 10;
// 顯示結(jié)果
echo $z * ($x - $y) / 100;
?
這是按照你的例子寫的小程序,你把它存成一個php文件,然后從瀏覽器打開它,就能看到結(jié)果。
如果你需要從數(shù)據(jù)庫里讀取x、y、z的值的代碼,那你要先提供數(shù)據(jù)庫的格式。
格式:update 表名稱 set 字段名稱 = 字段名稱 + 1 [ where語句]
比如說數(shù)據(jù)庫中有一張student表,要想把id為1的學(xué)生成績(score)加1則
update student set score=score+1 where id = 1
如果你不加where系統(tǒng)就不會知道你具體要更新哪條記錄,而導(dǎo)致所有該表中score都增加1,當(dāng)然,除非這就是你的本意。