不需要php呀
成都创新互联坚持“要么做到,要么别承诺”的工作理念,服务领域包括:网站设计制作、做网站、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的黄州网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
这样写的行不
!DOCTYPE html
html
head
title简单计算器/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="运算" value="运算" 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("除数不能为0");
}
resultvalue = first / second;
}
result.setAttribute("value",resultvalue);
}
/script
/body
/html
?php
$x = 50;
$y = 20;
$z = 10;
// 显示结果
echo $z * ($x - $y) / 100;
?
这是按照你的例子写的小程序,你把它存成一个php文件,然后从浏览器打开它,就能看到结果。
如果你需要从数据库里读取x、y、z的值的代码,那你要先提供数据库的格式。
格式:update 表名称 set 字段名称 = 字段名称 + 1 [ where语句]
比如说数据库中有一张student表,要想把id为1的学生成绩(score)加1则
update student set score=score+1 where id = 1
如果你不加where系统就不会知道你具体要更新哪条记录,而导致所有该表中score都增加1,当然,除非这就是你的本意。