大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
你这个代码有问题,
栾城网站建设公司创新互联,栾城网站设计制作,有大型网站制作公司丰富经验。已为栾城上千提供企业网站建设服务。企业网站搭建\外贸网站建设要多少钱,请找那个售后服务好的栾城做网站的公司定做!
input type=button value=减 onclick=out(?php echo pre($page) ?)
input type=button value=加 onclick=out(?php echo next1($page) ?)
这两行里的$page是打开这个页面时定义的0,不管你怎么点,都没有变过
格式:update 表名称 set 字段名称 = 字段名称 + 1 [ where语句]
比如说数据库中有一张student表,要想把id为1的学生成绩(score)加1则
update student set score=score+1 where id = 1
如果你不加where系统就不会知道你具体要更新哪条记录,而导致所有该表中score都增加1,当然,除非这就是你的本意。
?php
$x = 50;
$y = 20;
$z = 10;
// 显示结果
echo $z * ($x - $y) / 100;
?
这是按照你的例子写的小程序,你把它存成一个php文件,然后从浏览器打开它,就能看到结果。
如果你需要从数据库里读取x、y、z的值的代码,那你要先提供数据库的格式。
不需要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是弱类型语言,数据类型之间可以自动转换,得到的如果是数字类型的数据可以直接进行运算,不知道你的字符类型到底是什么样的字符类型,参考操作:
$a = $_GET['name'];//或者$a = $_POST['name'];
if($a==1){
++$um;
}
if($a==0){
--$sum;
}
分类是uid吧?
你的意思是想统计uid=2和 uid=5的小说数?
如果是这样的话,很简单。
用sql语句的count(),这个和php里统计数组个数的count类似。
$reqult=$db-query("select count(id) from class_x where uid=$row1['id']";
$row=$db-fetch_array($reqult));
echo $row[0];
//这个就是总数。
}