你這個(gè)代碼有問(wèn)題,
欒城網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),欒城網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為欒城上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的欒城做網(wǎng)站的公司定做!
input?type=button?value=減?onclick=out(?php?echo?pre($page)??)
input?type=button?value=加?onclick=out(?php?echo?next1($page)??)
這兩行里的$page是打開這個(gè)頁(yè)面時(shí)定義的0,不管你怎么點(diǎn),都沒(méi)有變過(guò)
格式:update 表名稱 set 字段名稱 = 字段名稱 + 1 [ where語(yǔ)句]
比如說(shuō)數(shù)據(jù)庫(kù)中有一張student表,要想把id為1的學(xué)生成績(jī)(score)加1則
update student set score=score+1 where id = 1
如果你不加where系統(tǒng)就不會(huì)知道你具體要更新哪條記錄,而導(dǎo)致所有該表中score都增加1,當(dāng)然,除非這就是你的本意。
?php
$x = 50;
$y = 20;
$z = 10;
// 顯示結(jié)果
echo $z * ($x - $y) / 100;
?
這是按照你的例子寫的小程序,你把它存成一個(gè)php文件,然后從瀏覽器打開它,就能看到結(jié)果。
如果你需要從數(shù)據(jù)庫(kù)里讀取x、y、z的值的代碼,那你要先提供數(shù)據(jù)庫(kù)的格式。
不需要php呀
這樣寫的行不
!DOCTYPE?html
html
head
title簡(jiǎn)單計(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是弱類型語(yǔ)言,數(shù)據(jù)類型之間可以自動(dòng)轉(zhuǎn)換,得到的如果是數(shù)字類型的數(shù)據(jù)可以直接進(jìn)行運(yùn)算,不知道你的字符類型到底是什么樣的字符類型,參考操作:
$a?=?$_GET['name'];//或者$a?=?$_POST['name'];
if($a==1){
++$um;
}
if($a==0){
--$sum;
}
分類是uid吧?
你的意思是想統(tǒng)計(jì)uid=2和 uid=5的小說(shuō)數(shù)?
如果是這樣的話,很簡(jiǎn)單。
用sql語(yǔ)句的count(),這個(gè)和php里統(tǒng)計(jì)數(shù)組個(gè)數(shù)的count類似。
$reqult=$db-query("select count(id) from class_x where uid=$row1['id']";
$row=$db-fetch_array($reqult));
echo $row[0];
//這個(gè)就是總數(shù)。
}